From e43254bf7e6b541a5415ccb6daa6fe9bc26fa3d5 Mon Sep 17 00:00:00 2001 From: Pinwheeler Date: Thu, 9 Jan 2025 21:15:09 -0800 Subject: [PATCH] I guess tests are flaky :( --- playwright.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playwright.config.ts b/playwright.config.ts index 256bfdb..edd0970 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -19,8 +19,8 @@ export default defineConfig({ /* Fail the build on CI if you accidentally left test.only in the source code. */ forbidOnly: !!process.env.CI, /* Retry on CI only */ - retries: process.env.CI ? 2 : 0, - workers: undefined, + retries: process.env.CI ? 2 : 1, + workers: 2, /* Reporter to use. See https://playwright.dev/docs/test-reporters */ reporter: [ ["html", { open: "never" }],