From e68c604eadb5b974d7abe29916d6c61e679149cf Mon Sep 17 00:00:00 2001 From: Anthony LC Date: Wed, 9 Sep 2026 15:04:31 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=85(e2e)=20fix=20flaky=20test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A test got suddenly very flaky, we fixed it by reloading the page to ensure that the config was properly overridden. --- src/frontend/apps/e2e/__tests__/app-impress/doc-routing.spec.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/frontend/apps/e2e/__tests__/app-impress/doc-routing.spec.ts b/src/frontend/apps/e2e/__tests__/app-impress/doc-routing.spec.ts index 1dda69e55..834d211b3 100644 --- a/src/frontend/apps/e2e/__tests__/app-impress/doc-routing.spec.ts +++ b/src/frontend/apps/e2e/__tests__/app-impress/doc-routing.spec.ts @@ -157,6 +157,8 @@ test.describe('Doc Routing', () => { RELEASE_VERSION: '0.0.0', }); + await page.goto('/'); + let counterReload = 0; await page.route(/.*\/users\/me\/$/, async (route) => { counterReload += 1;