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 534ec6b commit f4dffdaCopy full SHA for f4dffda
typescript-sdk/apps/dojo/e2e/playwright.config.ts
@@ -48,8 +48,8 @@ export default defineConfig({
48
testDir: "./tests",
49
retries: process.env.CI ? 3 : 0, // More retries for flaky AI tests in CI, 0 for local
50
// Make this sequential for now to avoid race conditions
51
- // workers: process.env.CI ? 1 : undefined,
52
- fullyParallel: true,
+ workers: process.env.CI ? 1 : undefined,
+ fullyParallel: process.env.CI ? false : true,
53
use: {
54
headless: true,
55
viewport: { width: 1280, height: 720 },
0 commit comments