@@ -865,7 +865,7 @@ describe('forceExit', () => {
865865describe ( 'with isolation="none"' , ( ) => {
866866 const isolationNoneFixture = fixtures . path ( 'test-runner' , 'test-runner-isolation-none.mjs' ) ;
867867
868- it ( 'should pass only to children' , { timeout : 10000 } , async ( ) => {
868+ it ( 'should pass only to children' , async ( ) => {
869869 const child = await common . spawnPromisified ( process . execPath , [
870870 isolationNoneFixture ,
871871 '--file' , join ( testFixtures , 'test_only.js' ) ,
@@ -878,7 +878,7 @@ describe('with isolation="none"', () => {
878878 assert . match ( child . stdout , / # t e s t s 1 / ) ;
879879 } ) ;
880880
881- it ( 'should skip tests not matching testNamePatterns - RegExp' , { timeout : 10000 } , async ( ) => {
881+ it ( 'should skip tests not matching testNamePatterns - RegExp' , async ( ) => {
882882 const child = await common . spawnPromisified ( process . execPath , [
883883 isolationNoneFixture ,
884884 '--file' , join ( testFixtures , 'default-behavior/test/skip_by_name.cjs' ) ,
@@ -891,7 +891,7 @@ describe('with isolation="none"', () => {
891891 assert . match ( child . stdout , / # t e s t s 1 / ) ;
892892 } ) ;
893893
894- it ( 'should skip tests matching testSkipPatterns - RegExp' , { timeout : 10000 } , async ( ) => {
894+ it ( 'should skip tests matching testSkipPatterns - RegExp' , async ( ) => {
895895 const child = await common . spawnPromisified ( process . execPath , [
896896 isolationNoneFixture ,
897897 '--file' , join ( testFixtures , 'default-behavior/test/skip_by_name.cjs' ) ,
0 commit comments