From cedb4f07bdbc288c8765f5b1e69fe8659b411945 Mon Sep 17 00:00:00 2001 From: Gianluca Zuccarelli Date: Wed, 13 Aug 2025 14:35:22 +0100 Subject: [PATCH] test: increase timeout for satellite registration The test started to flake because the test was starting to run longer than the timeout that was initially set. --- .../CreateImageWizard/steps/Registration/Registration.test.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/Components/CreateImageWizard/steps/Registration/Registration.test.tsx b/src/test/Components/CreateImageWizard/steps/Registration/Registration.test.tsx index af66ffbd..87dc8d25 100644 --- a/src/test/Components/CreateImageWizard/steps/Registration/Registration.test.tsx +++ b/src/test/Components/CreateImageWizard/steps/Registration/Registration.test.tsx @@ -422,7 +422,7 @@ describe('Registration request generated correctly', () => { localStorage.clear(); }); - test('register with satellite', { timeout: 20000 }, async () => { + test('register with satellite', { timeout: 25000 }, async () => { await renderCreateMode(); await goToRegistrationStep(); await clickRegisterSatellite();