From d51c4a26a0624c143df128470cf0f5d384aebda4 Mon Sep 17 00:00:00 2001 From: EmmaLRussell Date: Mon, 18 Sep 2023 15:33:28 +0100 Subject: [PATCH 1/3] try bumping up the timeout --- 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 ff73bf2b3..c89479a44 100644 --- a/app/static/playwright.config.ts +++ b/app/static/playwright.config.ts @@ -13,7 +13,7 @@ const config: PlaywrightTestConfig = { } }, retries: 1, - timeout: 60000 + timeout: 120000 }; export default config; From 61e7b9d80c02fb1fbb461c01d4fc7b24333960b6 Mon Sep 17 00:00:00 2001 From: EmmaLRussell Date: Mon, 18 Sep 2023 18:29:37 +0100 Subject: [PATCH 2/3] pin playwright version --- app/static/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/static/package.json b/app/static/package.json index 33c51ead6..4b7b93967 100644 --- a/app/static/package.json +++ b/app/static/package.json @@ -45,7 +45,7 @@ "xlsx": "^0.18.5" }, "devDependencies": { - "@playwright/test": "^1.20.0", + "@playwright/test": "1.37.0", "@types/bootstrap": "^5.2.6", "@types/jest": "^27.4.0", "@types/markdown-it": "^12.2.3", From e4d741d140de4c1eefdefd37c66e37500370c5fc Mon Sep 17 00:00:00 2001 From: EmmaLRussell Date: Tue, 19 Sep 2023 09:28:36 +0100 Subject: [PATCH 3/3] 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;