From fb4778541ca8b62d38e044834dbbcf4b3b762cd1 Mon Sep 17 00:00:00 2001 From: chiguyong Date: Tue, 2 Jun 2026 23:54:12 +0800 Subject: [PATCH] fix: improve playwright config for Docker environment stability --- frontend/playwright.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/playwright.config.ts b/frontend/playwright.config.ts index 8574f2f..5dc09f8 100644 --- a/frontend/playwright.config.ts +++ b/frontend/playwright.config.ts @@ -32,8 +32,9 @@ export default defineConfig({ webServer: { command: "npm run dev", - url: "http://localhost:3000", + url: "http://localhost:3000/api/auth/session", reuseExistingServer: true, timeout: 120 * 1000, + maxRetries: 3, }, });