Skip to content

Commit 4aa5683

Browse files
committed
Remove test timeouts
1 parent b122ae9 commit 4aa5683

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

test/parallel/test-runner-run.mjs

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

Comments
 (0)