Skip to content

Commit 6601b99

Browse files
committed
fix: playwright CI increase imout 'yarn build' can exceed Playwright’s default 60s in CI
Signed-off-by: Omar Salah <omar.salah1597@gmail.com>
1 parent 1c18842 commit 6601b99

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

playwright.config.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@ export default defineConfig({
7878
webServer: {
7979
command: useDevServer ? 'yarn dev' : 'yarn build && yarn start -p 3000',
8080
url: 'http://localhost:3000',
81+
// `yarn build` can exceed Playwright’s default 60s in CI.
82+
timeout: 3 * 60 * 1000,
8183
reuseExistingServer,
8284
env: {
8385
...process.env,

0 commit comments

Comments
 (0)