@@ -4,11 +4,6 @@ import {ModalProps, PressableProps} from 'react-native';
4
4
5
5
import { DEFAULT_FADE_OUT_DURATION , PickerBackdrop } from './PickerBackdrop' ;
6
6
7
- // If advancing a timer changes the state of a component, the timer must be run within an act.
8
- // However, since act is `Thenable`, ESLint will issue a warning if you do not do something like await.
9
- // For convenience, disable the relevant rule in this file.
10
- /* eslint-disable @typescript-eslint/no-floating-promises */
11
-
12
7
jest . useFakeTimers ( ) ;
13
8
14
9
// TODO: Jest v27にアップデートできたら、withReanimatedTimerでテストを実装できるか検証する。
@@ -21,7 +16,7 @@ describe('PickerBackdrop only with required props', () => {
21
16
expect ( screen . toJSON ( ) ) . toBeNull ( ) ;
22
17
} ) ;
23
18
24
- it ( 'renders successfully only with required props' , ( ) => {
19
+ it ( 'renders successfully only with required props' , async ( ) => {
25
20
render ( < PickerBackdrop isVisible pressableProps = { { testID : 'pressable' } } /> ) ;
26
21
//////////////////////////////////////////////////////////////////////////////////
27
22
// 初期表示
@@ -35,7 +30,8 @@ describe('PickerBackdrop only with required props', () => {
35
30
// 非表示にする
36
31
//////////////////////////////////////////////////////////////////////////////////
37
32
screen . update ( < PickerBackdrop isVisible = { false } pressableProps = { { testID : 'pressable' } } /> ) ;
38
- act ( ( ) => {
33
+
34
+ await act ( ( ) => {
39
35
jest . advanceTimersByTime ( DEFAULT_FADE_OUT_DURATION ) ;
40
36
} ) ;
41
37
const pressable2 = screen . queryByTestId ( 'pressable' ) ;
@@ -63,7 +59,7 @@ describe('PickerBackdrop with `onPress', () => {
63
59
} ) ;
64
60
//
65
61
describe ( 'PickerBackdrop with all props' , ( ) => {
66
- it ( 'should be applied properly' , ( ) => {
62
+ it ( 'should be applied properly' , async ( ) => {
67
63
const onPress = jest . fn ( ) ;
68
64
const onLongPress = jest . fn ( ) ;
69
65
const afterFadeIn = jest . fn ( ) ;
@@ -113,12 +109,12 @@ describe('PickerBackdrop with all props', () => {
113
109
expect ( onPress ) . toHaveBeenCalledTimes ( 1 ) ;
114
110
115
111
// fadeInDurationで指定した時間の1msc前ではafterFadeInは実行されない
116
- act ( ( ) => {
112
+ await act ( ( ) => {
117
113
jest . advanceTimersByTime ( 199 ) ;
118
114
} ) ;
119
115
expect ( afterFadeIn ) . not . toHaveBeenCalled ( ) ;
120
116
// fadeInDurationで指定した時間経過後は、afterFadeInが実行される
121
- act ( ( ) => {
117
+ await act ( ( ) => {
122
118
jest . advanceTimersByTime ( 1 ) ;
123
119
} ) ;
124
120
expect ( afterFadeIn ) . toHaveBeenCalled ( ) ;
@@ -147,12 +143,12 @@ describe('PickerBackdrop with all props', () => {
147
143
screen . update ( < PickerBackdrop isVisible = { false } afterFadeOut = { afterFadeOut } fadeOutDuration = { 100 } /> ) ;
148
144
149
145
// fadeOutDurationで指定した時間の1msc前ではafterFadeOutは実行されない
150
- act ( ( ) => {
146
+ await act ( ( ) => {
151
147
jest . advanceTimersByTime ( 99 ) ;
152
148
} ) ;
153
149
expect ( afterFadeOut ) . not . toHaveBeenCalled ( ) ;
154
150
// fadeOutDurationで指定した時間経過後は、afterFadeOutが実行される
155
- act ( ( ) => {
151
+ await act ( ( ) => {
156
152
jest . advanceTimersByTime ( 1 ) ;
157
153
} ) ;
158
154
expect ( afterFadeOut ) . toHaveBeenCalled ( ) ;
0 commit comments