From 9f52f2acb49fe48d857c363392413a46217d7894 Mon Sep 17 00:00:00 2001 From: Edward Hibbert Date: Mon, 8 Apr 2024 09:55:30 +0100 Subject: [PATCH] Playwright test fixes. --- playwright.config.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/playwright.config.js b/playwright.config.js index 154f63cde0..68bc633233 100644 --- a/playwright.config.js +++ b/playwright.config.js @@ -52,9 +52,11 @@ const config = { outputDir: '/tmp/test-results', // Flakiness - timeout: 10 * 60 * 1000, + // Timeout per test - needs to be less than 10 minutes to avoid Circle CI timeout kicking in. + timeout: 5 * 60 * 1000, navigationTimeout: 2 * 60 * 1000, - actionTimeout: 2 * 60 * 1000 + actionTimeout: 2 * 60 * 1000, + retries: 2 }; module.exports = config; \ No newline at end of file