Skip to content

Commit d95b7ac

Browse files
committed
fix: increased timeout length for CI to pass
1 parent 3f99a7e commit d95b7ac

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

packages/core/__tests__/config/playwright.next.config.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ const BASE_URL = `http://localhost:${PORT}`;
1111
export default defineConfig({
1212
testDir: "../e2e", // all E2E specs live here
1313
workers: 2,
14-
timeout: 10000,
14+
timeout: 60_000,
15+
expect: {
16+
timeout: 30_000,
17+
},
1518
reporter: "null",
1619
globalSetup: path.resolve(__dirname, "../helpers/globalSetup.next.js"),
1720

packages/core/__tests__/config/playwright.vite.config.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ const BASE_URL = `http://localhost:${PORT}`;
1111
export default defineConfig({
1212
testDir: "../e2e", // all E2E specs live here
1313
workers: 2,
14-
timeout: 10000,
15-
reporter: "null",
14+
timeout: 60_000,
15+
expect: {
16+
timeout: 30_000,
17+
}, reporter: "null",
1618
globalSetup: path.resolve(__dirname, "../helpers/globalSetup.vite.js"),
1719

1820
use: {

0 commit comments

Comments
 (0)