Skip to content

Commit d21a592

Browse files
committed
Increase timeout and retries to work around a hydration error that happens only in test
1 parent 6498a98 commit d21a592

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

playwright.config.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default defineConfig({
88
outputDir: "./test/out",
99
fullyParallel: true,
1010
forbidOnly: !!process.env.CI,
11-
retries: process.env.CI ? 2 : 0,
11+
retries: process.env.CI ? 2 : 1,
1212
workers: process.env.CI ? 1 : undefined,
1313
reporter: process.env.CI ? [["github"], ["html"]] : "list",
1414
use: {
@@ -17,6 +17,8 @@ export default defineConfig({
1717
screenshot: "only-on-failure",
1818
},
1919

20+
timeout: 60 * 1000,
21+
2022
projects: [
2123
{
2224
name: "chromium",

0 commit comments

Comments
 (0)