@@ -692,7 +692,7 @@ describe('forceExit', () => {
692692describe ( 'with isolation="none"' , ( ) => {
693693 const isolationNoneFixture = fixtures . path ( 'test-runner' , 'test-runner-isolation-none.mjs' ) ;
694694
695- it ( 'should pass only to children' , { timeout : 10000 } , async ( ) => {
695+ it ( 'should pass only to children' , async ( ) => {
696696 const child = await common . spawnPromisified ( process . execPath , [
697697 isolationNoneFixture ,
698698 '--file' , join ( testFixtures , 'test_only.js' ) ,
@@ -705,7 +705,7 @@ describe('with isolation="none"', () => {
705705 assert . match ( child . stdout , / # t e s t s 1 / ) ;
706706 } ) ;
707707
708- it ( 'should skip tests not matching testNamePatterns - RegExp' , { timeout : 10000 } , async ( ) => {
708+ it ( 'should skip tests not matching testNamePatterns - RegExp' , async ( ) => {
709709 const child = await common . spawnPromisified ( process . execPath , [
710710 isolationNoneFixture ,
711711 '--file' , join ( testFixtures , 'default-behavior/test/skip_by_name.cjs' ) ,
@@ -718,7 +718,7 @@ describe('with isolation="none"', () => {
718718 assert . match ( child . stdout , / # t e s t s 1 / ) ;
719719 } ) ;
720720
721- it ( 'should skip tests matching testSkipPatterns - RegExp' , { timeout : 10000 } , async ( ) => {
721+ it ( 'should skip tests matching testSkipPatterns - RegExp' , async ( ) => {
722722 const child = await common . spawnPromisified ( process . execPath , [
723723 isolationNoneFixture ,
724724 '--file' , join ( testFixtures , 'default-behavior/test/skip_by_name.cjs' ) ,
0 commit comments