Skip to content

Commit 8637ae0

Browse files
committed
Remove test timeouts
1 parent 71e2dcf commit 8637ae0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/parallel/test-runner-run.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,7 @@ describe('forceExit', () => {
692692
describe('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, /# tests 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, /# tests 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

Comments
 (0)