Lint and Prettier

This commit is contained in:
Okechi Jones-Williams
2026-05-20 15:45:57 +01:00
parent ab72f172d3
commit 00a9a85ae2

View File

@@ -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()