From 28c06993ce558318cf75daac39eb4e27119e48b0 Mon Sep 17 00:00:00 2001 From: Alexis Date: Wed, 14 Feb 2024 06:15:07 +0100 Subject: [PATCH] increase global expect timeout to 10s to avoid some tests to fail because of a slow run --- frontend/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/playwright.config.ts b/frontend/playwright.config.ts index 2823fb463..67fd69ae1 100644 --- a/frontend/playwright.config.ts +++ b/frontend/playwright.config.ts @@ -16,7 +16,7 @@ const config: PlaywrightTestConfig = { globalTimeout: 60 * 60 * 1000, timeout: 50 * 1000, expect : { - timeout: 7 * 1000 + timeout: 10 * 1000 }, reporter: [ [process.env.CI ? 'github' : 'list'],