We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3589002 commit ebba031Copy full SHA for ebba031
test/vitest.ts
@@ -2,7 +2,7 @@ import { availableParallelism } from 'node:os';
2
3
import { defineConfig } from 'vitest/config';
4
5
-const DEFAULT_TIMEOUT_MS = 120_000;
+const DEFAULT_TIMEOUT_MS = process.env.CI ? 240_000 : 120_000;
6
7
const REPORTERS = process.env.GITHUB_ACTIONS
8
? ['verbose', 'github-actions']
0 commit comments