From 37592fcdd577d465afc2fa4d1f52c0ddd77cd7fe Mon Sep 17 00:00:00 2001 From: Arnaud Date: Thu, 21 Nov 2024 09:26:40 +0100 Subject: [PATCH] Remove unused variable --- e2e/onboarding.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/onboarding.spec.ts b/e2e/onboarding.spec.ts index 728fd15..0b926fa 100644 --- a/e2e/onboarding.spec.ts +++ b/e2e/onboarding.spec.ts @@ -37,7 +37,7 @@ test.describe('onboarding', () => { } }); - test.beforeEach(async ({ page }, testInfo) => { + test.beforeEach(async ({ page }) => { await page.context().setOffline(false) }); })