Skip to content

Commit 8d581d0

Browse files
committed
fix: Increased timeout time
1 parent 19afa98 commit 8d581d0

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ const BASE_URL = `http://localhost:${PORT}`;
1111
export default defineConfig({
1212
testDir: "../e2e", // all E2E specs live here
1313
workers: 2,
14-
timeout: 60_000,
14+
timeout: 300_000,
1515
expect: {
16-
timeout: 30_000,
16+
timeout: 150_000,
1717
},
1818
reporter: "null",
1919
globalSetup: path.resolve(__dirname, "../helpers/globalSetup.next.js"),

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

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

packages/core/__tests__/helpers/globalSetup.next.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// packages/core/__tests__/helpers/globalSetup.next.js
12
import { resetZeroUiState } from './resetProjectState.js';
23
import { loadCliFromFixture } from './loadCli.js';
34
import path from 'node:path';

0 commit comments

Comments
 (0)