From 00a9a85ae2d3162a722efd617b6342151fb075fd Mon Sep 17 00:00:00 2001 From: Okechi Jones-Williams Date: Wed, 20 May 2026 15:45:57 +0100 Subject: [PATCH] Lint and Prettier --- tests/e2e/web/specs/onboardingFlow.spec.ts | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/tests/e2e/web/specs/onboardingFlow.spec.ts b/tests/e2e/web/specs/onboardingFlow.spec.ts index 97fba1fd..0466074c 100644 --- a/tests/e2e/web/specs/onboardingFlow.spec.ts +++ b/tests/e2e/web/specs/onboardingFlow.spec.ts @@ -237,10 +237,7 @@ test.describe('when given valid input', () => { await expect(dbInfo.user.username).toContain(googleAccountOne.username) }) - test('should successfully skip the onboarding flow', async ({ - app, - fakerAccount - }) => { + test('should successfully skip the onboarding flow', async ({app, fakerAccount}) => { await app.registerWithEmail(fakerAccount) await app.skipOnboardingHeadToProfile(fakerAccount) @@ -320,10 +317,7 @@ test.describe('when given valid input', () => { }) test.describe('should successfully complete the onboarding flow after using the back button', () => { - test("the first time it's an option", async ({ - app, - fakerAccount - }) => { + test("the first time it's an option", async ({app, fakerAccount}) => { await app.registerWithEmail(fakerAccount) await app.onboarding.clickContinueButton() await app.onboarding.clickBackButton() @@ -347,10 +341,7 @@ test.describe('when given valid input', () => { await expect(dbInfo.user.username).toContain(fakerAccount.username) }) - test("the second time it's an option", async ({ - app, - fakerAccount - }) => { + test("the second time it's an option", async ({app, fakerAccount}) => { await app.registerWithEmail(fakerAccount) await app.onboarding.clickContinueButton() await app.onboarding.clickContinueButton()