From db7cbd8982fdd987984b9601eef554673ad9bf46 Mon Sep 17 00:00:00 2001 From: wearrrrr Date: Sat, 9 Nov 2024 15:07:05 -0600 Subject: [PATCH] bump actionTimeout to 10k ms, should make testing more reliable for slower internet, but we might just set this to a really high number if it keeps being an issue. --- playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright.config.ts b/playwright.config.ts index 75e9121..b7315d6 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -14,7 +14,7 @@ export default defineConfig({ use: { /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */ trace: "on-first-retry", - actionTimeout: 5000, + actionTimeout: 10000, baseURL: "http://localhost:1337", },