@@ -111,7 +111,27 @@ describe('Watch mode flows', () => {
111
111
112
112
beforeEach ( ( ) => {
113
113
isInteractive = true ;
114
- jest . doMock ( 'jest-util/build/isInteractive' , ( ) => isInteractive ) ;
114
+ jest . doMock ( 'jest-util' , ( ) => {
115
+ const original = jest . requireActual ( 'jest-util' ) ;
116
+
117
+ return {
118
+ ...original ,
119
+ isInteractive,
120
+ // this imports internally, so we need to check `isInteractive` manually
121
+ preRunMessage : {
122
+ print : function mockedPrint ( stream ) {
123
+ if ( isInteractive ) {
124
+ stream . write ( 'Determining test suites to run...' ) ;
125
+ }
126
+ } ,
127
+ remove : function mockedRemove ( stream ) {
128
+ if ( isInteractive ) {
129
+ original . clearLine ( stream ) ;
130
+ }
131
+ } ,
132
+ } ,
133
+ } ;
134
+ } ) ;
115
135
watch = require ( '../watch' ) . default ;
116
136
const config = {
117
137
rootDir : __dirname ,
@@ -131,10 +151,10 @@ describe('Watch mode flows', () => {
131
151
jest . resetModules ( ) ;
132
152
} ) ;
133
153
134
- it ( 'Correctly passing test path pattern' , ( ) => {
154
+ it ( 'Correctly passing test path pattern' , async ( ) => {
135
155
globalConfig . testPathPattern = 'test-*' ;
136
156
137
- watch ( globalConfig , contexts , pipe , hasteMapInstances , stdin ) ;
157
+ await watch ( globalConfig , contexts , pipe , hasteMapInstances , stdin ) ;
138
158
139
159
expect ( runJestMock . mock . calls [ 0 ] [ 0 ] ) . toMatchObject ( {
140
160
contexts,
@@ -147,10 +167,10 @@ describe('Watch mode flows', () => {
147
167
} ) ;
148
168
} ) ;
149
169
150
- it ( 'Correctly passing test name pattern' , ( ) => {
170
+ it ( 'Correctly passing test name pattern' , async ( ) => {
151
171
globalConfig . testNamePattern = 'test-*' ;
152
172
153
- watch ( globalConfig , contexts , pipe , hasteMapInstances , stdin ) ;
173
+ await watch ( globalConfig , contexts , pipe , hasteMapInstances , stdin ) ;
154
174
155
175
expect ( runJestMock . mock . calls [ 0 ] [ 0 ] ) . toMatchObject ( {
156
176
contexts,
@@ -163,8 +183,8 @@ describe('Watch mode flows', () => {
163
183
} ) ;
164
184
} ) ;
165
185
166
- it ( 'Runs Jest once by default and shows usage' , ( ) => {
167
- watch ( globalConfig , contexts , pipe , hasteMapInstances , stdin ) ;
186
+ it ( 'Runs Jest once by default and shows usage' , async ( ) => {
187
+ await watch ( globalConfig , contexts , pipe , hasteMapInstances , stdin ) ;
168
188
expect ( runJestMock . mock . calls [ 0 ] [ 0 ] ) . toMatchObject ( {
169
189
contexts,
170
190
globalConfig,
@@ -177,12 +197,12 @@ describe('Watch mode flows', () => {
177
197
expect ( pipe . write . mock . calls . reverse ( ) [ 0 ] ) . toMatchSnapshot ( ) ;
178
198
} ) ;
179
199
180
- it ( 'Runs Jest in a non-interactive environment not showing usage' , ( ) => {
200
+ it ( 'Runs Jest in a non-interactive environment not showing usage' , async ( ) => {
181
201
jest . resetModules ( ) ;
182
202
isInteractive = false ;
183
203
184
204
watch = require ( '../watch' ) . default ;
185
- watch ( globalConfig , contexts , pipe , hasteMapInstances , stdin ) ;
205
+ await watch ( globalConfig , contexts , pipe , hasteMapInstances , stdin ) ;
186
206
expect ( runJestMock . mock . calls [ 0 ] [ 0 ] ) . toMatchObject ( {
187
207
contexts,
188
208
globalConfig,
@@ -195,9 +215,9 @@ describe('Watch mode flows', () => {
195
215
expect ( pipe . write . mock . calls . reverse ( ) [ 0 ] ) . toMatchSnapshot ( ) ;
196
216
} ) ;
197
217
198
- it ( 'resolves relative to the package root' , ( ) => {
199
- expect ( async ( ) => {
200
- await watch (
218
+ it ( 'resolves relative to the package root' , async ( ) => {
219
+ await expect (
220
+ watch (
201
221
{
202
222
...globalConfig ,
203
223
rootDir : __dirname ,
@@ -207,8 +227,8 @@ describe('Watch mode flows', () => {
207
227
pipe ,
208
228
hasteMapInstances ,
209
229
stdin ,
210
- ) ;
211
- } ) . not . toThrow ( ) ;
230
+ ) ,
231
+ ) . resolves . toBeUndefined ( ) ;
212
232
} ) ;
213
233
214
234
it ( 'shows prompts for WatchPlugins in alphabetical order' , async ( ) => {
@@ -239,7 +259,7 @@ describe('Watch mode flows', () => {
239
259
it ( 'shows update snapshot prompt (without interactive)' , async ( ) => {
240
260
results = { snapshot : { failure : true } } ;
241
261
242
- watch (
262
+ await watch (
243
263
{
244
264
...globalConfig ,
245
265
rootDir : __dirname ,
@@ -282,7 +302,7 @@ describe('Watch mode flows', () => {
282
302
] ,
283
303
} ;
284
304
285
- watch (
305
+ await watch (
286
306
{
287
307
...globalConfig ,
288
308
rootDir : __dirname ,
@@ -317,7 +337,7 @@ describe('Watch mode flows', () => {
317
337
{ virtual : true } ,
318
338
) ;
319
339
320
- watch (
340
+ await watch (
321
341
{
322
342
...globalConfig ,
323
343
rootDir : __dirname ,
@@ -354,7 +374,7 @@ describe('Watch mode flows', () => {
354
374
{ virtual : true } ,
355
375
) ;
356
376
357
- watch (
377
+ await watch (
358
378
{
359
379
...globalConfig ,
360
380
rootDir : __dirname ,
@@ -433,7 +453,7 @@ describe('Watch mode flows', () => {
433
453
${ 'p' } | ${ 'TestPathPattern' }
434
454
` (
435
455
'allows WatchPlugins to override non-reserved internal plugins' ,
436
- ( { key} ) => {
456
+ async ( { key} ) => {
437
457
const run = jest . fn ( ( ) => Promise . resolve ( ) ) ;
438
458
const pluginPath = `${ __dirname } /__fixtures__/plugin_valid_override_${ key } ` ;
439
459
jest . doMock (
@@ -453,17 +473,19 @@ describe('Watch mode flows', () => {
453
473
{ virtual : true } ,
454
474
) ;
455
475
456
- watch (
457
- {
458
- ...globalConfig ,
459
- rootDir : __dirname ,
460
- watchPlugins : [ { config : { } , path : pluginPath } ] ,
461
- } ,
462
- contexts ,
463
- pipe ,
464
- hasteMapInstances ,
465
- stdin ,
466
- ) ;
476
+ await expect (
477
+ watch (
478
+ {
479
+ ...globalConfig ,
480
+ rootDir : __dirname ,
481
+ watchPlugins : [ { config : { } , path : pluginPath } ] ,
482
+ } ,
483
+ contexts ,
484
+ pipe ,
485
+ hasteMapInstances ,
486
+ stdin ,
487
+ ) ,
488
+ ) . resolves . toBeUndefined ( ) ;
467
489
} ,
468
490
) ;
469
491
@@ -686,7 +708,7 @@ describe('Watch mode flows', () => {
686
708
watchPlugins : [ { config : { } , path : pluginPath } ] ,
687
709
} ;
688
710
689
- watch ( config , contexts , pipe , hasteMapInstances , stdin ) ;
711
+ await watch ( config , contexts , pipe , hasteMapInstances , stdin ) ;
690
712
await nextTick ( ) ;
691
713
692
714
stdin . emit ( 'x' ) ;
@@ -811,8 +833,8 @@ describe('Watch mode flows', () => {
811
833
expect ( showPrompt2 ) . toHaveBeenCalled ( ) ;
812
834
} ) ;
813
835
814
- it ( 'Pressing "o" runs test in "only changed files" mode' , ( ) => {
815
- watch ( globalConfig , contexts , pipe , hasteMapInstances , stdin ) ;
836
+ it ( 'Pressing "o" runs test in "only changed files" mode' , async ( ) => {
837
+ await watch ( globalConfig , contexts , pipe , hasteMapInstances , stdin ) ;
816
838
runJestMock . mockReset ( ) ;
817
839
818
840
stdin . emit ( 'o' ) ;
@@ -825,8 +847,8 @@ describe('Watch mode flows', () => {
825
847
} ) ;
826
848
} ) ;
827
849
828
- it ( 'Pressing "a" runs test in "watch all" mode' , ( ) => {
829
- watch ( globalConfig , contexts , pipe , hasteMapInstances , stdin ) ;
850
+ it ( 'Pressing "a" runs test in "watch all" mode' , async ( ) => {
851
+ await watch ( globalConfig , contexts , pipe , hasteMapInstances , stdin ) ;
830
852
runJestMock . mockReset ( ) ;
831
853
832
854
stdin . emit ( 'a' ) ;
@@ -839,8 +861,8 @@ describe('Watch mode flows', () => {
839
861
} ) ;
840
862
} ) ;
841
863
842
- it ( 'Pressing "ENTER" reruns the tests' , ( ) => {
843
- watch ( globalConfig , contexts , pipe , hasteMapInstances , stdin ) ;
864
+ it ( 'Pressing "ENTER" reruns the tests' , async ( ) => {
865
+ await watch ( globalConfig , contexts , pipe , hasteMapInstances , stdin ) ;
844
866
expect ( runJestMock ) . toHaveBeenCalledTimes ( 1 ) ;
845
867
stdin . emit ( KEYS . ENTER ) ;
846
868
expect ( runJestMock ) . toHaveBeenCalledTimes ( 2 ) ;
@@ -849,7 +871,7 @@ describe('Watch mode flows', () => {
849
871
it ( 'Pressing "t" reruns the tests in "test name pattern" mode' , async ( ) => {
850
872
const hooks = new JestHook ( ) ;
851
873
852
- watch ( globalConfig , contexts , pipe , hasteMapInstances , stdin , hooks ) ;
874
+ await watch ( globalConfig , contexts , pipe , hasteMapInstances , stdin , hooks ) ;
853
875
runJestMock . mockReset ( ) ;
854
876
855
877
stdin . emit ( 't' ) ;
@@ -867,7 +889,7 @@ describe('Watch mode flows', () => {
867
889
it ( 'Pressing "p" reruns the tests in "filename pattern" mode' , async ( ) => {
868
890
const hooks = new JestHook ( ) ;
869
891
870
- watch ( globalConfig , contexts , pipe , hasteMapInstances , stdin , hooks ) ;
892
+ await watch ( globalConfig , contexts , pipe , hasteMapInstances , stdin , hooks ) ;
871
893
runJestMock . mockReset ( ) ;
872
894
873
895
stdin . emit ( 'p' ) ;
@@ -885,7 +907,7 @@ describe('Watch mode flows', () => {
885
907
it ( 'Can combine "p" and "t" filters' , async ( ) => {
886
908
const hooks = new JestHook ( ) ;
887
909
888
- watch ( globalConfig , contexts , pipe , hasteMapInstances , stdin , hooks ) ;
910
+ await watch ( globalConfig , contexts , pipe , hasteMapInstances , stdin , hooks ) ;
889
911
runJestMock . mockReset ( ) ;
890
912
891
913
stdin . emit ( 'p' ) ;
@@ -911,7 +933,7 @@ describe('Watch mode flows', () => {
911
933
912
934
globalConfig . updateSnapshot = 'new' ;
913
935
914
- watch ( globalConfig , contexts , pipe , hasteMapInstances , stdin , hooks ) ;
936
+ await watch ( globalConfig , contexts , pipe , hasteMapInstances , stdin , hooks ) ;
915
937
runJestMock . mockReset ( ) ;
916
938
917
939
hooks . getEmitter ( ) . onTestRunComplete ( { snapshot : { failure : true } } ) ;
@@ -951,17 +973,17 @@ describe('Watch mode flows', () => {
951
973
} ) ;
952
974
} ) ;
953
975
954
- it ( 'passWithNoTest should be set to true in watch mode' , ( ) => {
976
+ it ( 'passWithNoTest should be set to true in watch mode' , async ( ) => {
955
977
globalConfig . passWithNoTests = false ;
956
- watch ( globalConfig , contexts , pipe , hasteMapInstances , stdin ) ;
978
+ await watch ( globalConfig , contexts , pipe , hasteMapInstances , stdin ) ;
957
979
globalConfig . passWithNoTests = true ;
958
980
expect ( runJestMock . mock . calls [ 0 ] [ 0 ] ) . toMatchObject ( {
959
981
globalConfig,
960
982
} ) ;
961
983
} ) ;
962
984
963
- it ( 'shows the correct usage for the f key in "only failed tests" mode' , ( ) => {
964
- watch ( globalConfig , contexts , pipe , hasteMapInstances , stdin ) ;
985
+ it ( 'shows the correct usage for the f key in "only failed tests" mode' , async ( ) => {
986
+ await watch ( globalConfig , contexts , pipe , hasteMapInstances , stdin ) ;
965
987
966
988
stdin . emit ( 'f' ) ;
967
989
stdin . emit ( 'w' ) ;
0 commit comments