Skip to content

Commit 578efc3

Browse files
committed
ci timeouts added (gha - 60s/10s, local - 30s/5s)
1 parent cc85475 commit 578efc3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

frontend/playwright.config.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ export default defineConfig({
66
forbidOnly: !!process.env.CI,
77
retries: process.env.CI ? 2 : 0,
88
workers: process.env.CI ? 1 : undefined,
9+
timeout: process.env.CI ? 60000 : 30000,
10+
expect: {
11+
timeout: process.env.CI ? 10000 : 5000,
12+
},
913
reporter: 'html',
1014
use: {
1115
baseURL: 'https://localhost:5001',

0 commit comments

Comments
 (0)