From a13dd88f4eb7b2ff7de3ec0cd09663aa7b740685 Mon Sep 17 00:00:00 2001 From: Eli Kogan-Wang Date: Fri, 24 Jan 2025 23:17:12 +0100 Subject: [PATCH] fix: increase timeout for image download test to prevent failures --- frontend/tests/screencaps.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/tests/screencaps.spec.ts b/frontend/tests/screencaps.spec.ts index ea28464b..5034ae85 100644 --- a/frontend/tests/screencaps.spec.ts +++ b/frontend/tests/screencaps.spec.ts @@ -334,7 +334,7 @@ colorSchemes.forEach((colorScheme) => { // find button 'Download image' and click on it await page.locator('button').filter({ hasText: 'Download image' }).first().click(); - test.setTimeout(180000); + test.setTimeout(240000); await downloadPromise; }); });