Skip to content

Commit 825aedc

Browse files
committed
revert: remove temporary CI worker bump and debug flag
1 parent 49ea2da commit 825aedc

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

integration/playwright.config.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,14 @@ import * as path from 'path';
77

88
config({ path: path.resolve(__dirname, '.env.local') });
99

10-
// Enable debug logging for @clerk/testing route handler
11-
process.env.CLERK_TESTING_DEBUG = '1';
12-
1310
export const common: PlaywrightTestConfig = {
1411
testDir: './tests',
1512
snapshotDir: './tests/snapshots',
1613
fullyParallel: true,
1714
forbidOnly: !!process.env.CI,
1815
retries: process.env.CI ? 5 : 0,
1916
maxFailures: process.env.CI ? 5 : undefined,
20-
workers: process.env.E2E_WORKERS ? Number(process.env.E2E_WORKERS) : process.env.CI ? 4 : '70%',
17+
workers: process.env.E2E_WORKERS ? Number(process.env.E2E_WORKERS) : process.env.CI ? '50%' : '70%',
2118
use: {
2219
actionTimeout: 10_000,
2320
navigationTimeout: 30_000,

0 commit comments

Comments
 (0)