Skip to content

Commit 0c26a52

Browse files
Merge branch 'ag-ui-protocol:main' into kotlinsdk
2 parents 6b84d71 + 77a7405 commit 0c26a52

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

typescript-sdk/apps/dojo/e2e/playwright.config.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,9 @@ export default defineConfig({
4747
timeout: process.env.CI ? 300_000 : 120_000, // 5min in CI, 2min locally for AI tests
4848
testDir: "./tests",
4949
retries: process.env.CI ? 1 : 0, // More retries for flaky AI tests in CI, 0 for local
50-
fullyParallel: true,
50+
// Make this sequential for now to avoid race conditions
51+
workers: process.env.CI ? 1 : undefined,
52+
fullyParallel: process.env.CI ? false : true,
5153
use: {
5254
headless: true,
5355
viewport: { width: 1280, height: 720 },

0 commit comments

Comments
 (0)