Skip to content

Commit ebba031

Browse files
fix(ci): increase default timeout in CI
1 parent 3589002 commit ebba031

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/vitest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { availableParallelism } from 'node:os';
22

33
import { defineConfig } from 'vitest/config';
44

5-
const DEFAULT_TIMEOUT_MS = 120_000;
5+
const DEFAULT_TIMEOUT_MS = process.env.CI ? 240_000 : 120_000;
66

77
const REPORTERS = process.env.GITHUB_ACTIONS
88
? ['verbose', 'github-actions']

0 commit comments

Comments
 (0)