From e4d741d140de4c1eefdefd37c66e37500370c5fc Mon Sep 17 00:00:00 2001 From: EmmaLRussell Date: Tue, 19 Sep 2023 09:28:36 +0100 Subject: [PATCH] revert timeout change --- app/static/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/static/playwright.config.ts b/app/static/playwright.config.ts index c89479a44..ff73bf2b3 100644 --- a/app/static/playwright.config.ts +++ b/app/static/playwright.config.ts @@ -13,7 +13,7 @@ const config: PlaywrightTestConfig = { } }, retries: 1, - timeout: 120000 + timeout: 60000 }; export default config;