From 61361cd2b68e527da6ce07d2ae133e158cc89bb7 Mon Sep 17 00:00:00 2001 From: Matt Gibson Date: Tue, 27 Jan 2026 12:48:55 -0800 Subject: [PATCH] Longer server update time --- playwright.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/playwright.config.ts b/playwright.config.ts index 8a86279abc7..f07a8d83407 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -79,7 +79,8 @@ export default defineConfig({ webServer: { command: "cd apps/web && npm run build:bit:watch", url: webServerBaseUrl, - reuseExistingServer: true, //!process.env.CI, + reuseExistingServer: !process.env.CI, ignoreHTTPSErrors: true, + timeout: 120 * 1000, // 2 minutes }, });