We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49ea2da commit 825aedcCopy full SHA for 825aedc
1 file changed
integration/playwright.config.ts
@@ -7,17 +7,14 @@ import * as path from 'path';
7
8
config({ path: path.resolve(__dirname, '.env.local') });
9
10
-// Enable debug logging for @clerk/testing route handler
11
-process.env.CLERK_TESTING_DEBUG = '1';
12
-
13
export const common: PlaywrightTestConfig = {
14
testDir: './tests',
15
snapshotDir: './tests/snapshots',
16
fullyParallel: true,
17
forbidOnly: !!process.env.CI,
18
retries: process.env.CI ? 5 : 0,
19
maxFailures: process.env.CI ? 5 : undefined,
20
- workers: process.env.E2E_WORKERS ? Number(process.env.E2E_WORKERS) : process.env.CI ? 4 : '70%',
+ workers: process.env.E2E_WORKERS ? Number(process.env.E2E_WORKERS) : process.env.CI ? '50%' : '70%',
21
use: {
22
actionTimeout: 10_000,
23
navigationTimeout: 30_000,
0 commit comments