Skip to content

Commit 09075b8

Browse files
test(federated-css-react-ssr): increase webServer timeouts to 15m and test timeout to 3m to accommodate sequential builds in CI
1 parent d9526ab commit 09075b8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

federated-css-react-ssr/playwright.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const reuseExisting = !process.env.CI;
44

55
export default defineConfig({
66
testDir: './e2e',
7-
timeout: 120_000,
7+
timeout: 180_000,
88
expect: {
99
timeout: 15_000,
1010
},
@@ -35,15 +35,15 @@ export default defineConfig({
3535
cwd: __dirname,
3636
port: 3001,
3737
reuseExistingServer: reuseExisting,
38-
timeout: 480_000,
38+
timeout: 900_000,
3939
},
4040
{
4141
// Start all shells and wait until all ports 4000-4005 respond
4242
command: 'node scripts/start-shells.cjs',
4343
cwd: __dirname,
4444
port: 4005,
4545
reuseExistingServer: reuseExisting,
46-
timeout: 480_000,
46+
timeout: 900_000,
4747
},
4848
],
4949
});

0 commit comments

Comments
 (0)