From 372d5e3975f033f5870ccebd1d72a8ad3cee7014 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Thu, 30 Jul 2026 01:29:52 +0200 Subject: [PATCH] Increase Playwright expect timeout to 60 seconds for longer wait conditions. --- playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright.config.ts b/playwright.config.ts index 4558c51d..95359cfb 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -65,6 +65,6 @@ export default defineConfig({ ], timeout: 120000, expect: { - timeout: 20000, + timeout: 60000, }, })