@@ -294,7 +294,7 @@ onNodeVersions('^12.17.0 || >=13.2.0', () => {
294
294
295
295
it ( 'should transform with transformer with only async transforms' , ( ) => {
296
296
const { json, stderr} = runWithJson ( dir , [ '--no-cache' ] , {
297
- nodeOptions : '--experimental-vm-modules' ,
297
+ nodeOptions : '--experimental-vm-modules --no-warnings ' ,
298
298
} ) ;
299
299
expect ( stderr ) . toMatch ( / P A S S / ) ;
300
300
expect ( json . success ) . toBe ( true ) ;
@@ -311,7 +311,7 @@ onNodeVersions('^12.17.0 || >=13.2.0', () => {
311
311
312
312
it ( "should use babel-jest's async transforms" , ( ) => {
313
313
const { json, stderr} = runWithJson ( dir , [ '--no-cache' ] , {
314
- nodeOptions : '--experimental-vm-modules' ,
314
+ nodeOptions : '--experimental-vm-modules --no-warnings ' ,
315
315
} ) ;
316
316
expect ( stderr ) . toMatch ( / P A S S / ) ;
317
317
expect ( json . success ) . toBe ( true ) ;
@@ -323,7 +323,7 @@ onNodeVersions('^12.17.0 || >=13.2.0', () => {
323
323
const dir = path . resolve ( __dirname , '../transform/transform-esm-runner' ) ;
324
324
test ( 'runs test with native ESM' , ( ) => {
325
325
const { json, stderr} = runWithJson ( dir , [ '--no-cache' ] , {
326
- nodeOptions : '--experimental-vm-modules' ,
326
+ nodeOptions : '--experimental-vm-modules --no-warnings ' ,
327
327
} ) ;
328
328
329
329
expect ( stderr ) . toMatch ( / P A S S / ) ;
@@ -339,7 +339,7 @@ onNodeVersions('^12.17.0 || >=13.2.0', () => {
339
339
) ;
340
340
test ( 'runs test with native ESM' , ( ) => {
341
341
const { json, stderr} = runWithJson ( dir , [ '--no-cache' ] , {
342
- nodeOptions : '--experimental-vm-modules' ,
342
+ nodeOptions : '--experimental-vm-modules --no-warnings ' ,
343
343
} ) ;
344
344
345
345
expect ( stderr ) . toMatch ( / P A S S / ) ;
0 commit comments