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.
2 parents 6b84d71 + 77a7405 commit 0c26a52Copy full SHA for 0c26a52
typescript-sdk/apps/dojo/e2e/playwright.config.ts
@@ -47,7 +47,9 @@ export default defineConfig({
47
timeout: process.env.CI ? 300_000 : 120_000, // 5min in CI, 2min locally for AI tests
48
testDir: "./tests",
49
retries: process.env.CI ? 1 : 0, // More retries for flaky AI tests in CI, 0 for local
50
- fullyParallel: true,
+ // Make this sequential for now to avoid race conditions
51
+ workers: process.env.CI ? 1 : undefined,
52
+ fullyParallel: process.env.CI ? false : true,
53
use: {
54
headless: true,
55
viewport: { width: 1280, height: 720 },
0 commit comments