mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-03-25 01:51:37 -04:00
Fix e2e tests
This commit is contained in:
@@ -246,7 +246,7 @@ test.describe('when given valid input', () => {
|
||||
await authPage.clickSignUpWithEmailButton()
|
||||
})
|
||||
|
||||
test('the first time its an option', async ({
|
||||
test("the first time it's an option", async ({
|
||||
onboardingPage,
|
||||
signUpPage,
|
||||
profilePage,
|
||||
@@ -261,7 +261,6 @@ test.describe('when given valid input', () => {
|
||||
await signUpPage.fillDisplayName(fakerAccount.display_name)
|
||||
await signUpPage.fillUsername(fakerAccount.username)
|
||||
await signUpPage.clickNextButton()
|
||||
await signUpPage.clickNextButton() //Skip bio
|
||||
await signUpPage.clickNextButton() //Skip optional information
|
||||
await profilePage.clickCloseButton()
|
||||
await onboardingPage.clickRefineProfileButton()
|
||||
@@ -272,7 +271,7 @@ test.describe('when given valid input', () => {
|
||||
await expect(dbInfo.user.username).toContain(fakerAccount.username)
|
||||
})
|
||||
|
||||
test('the second time its an option', async ({
|
||||
test("the second time it's an option", async ({
|
||||
onboardingPage,
|
||||
signUpPage,
|
||||
profilePage,
|
||||
@@ -287,7 +286,6 @@ test.describe('when given valid input', () => {
|
||||
await signUpPage.fillDisplayName(fakerAccount.display_name)
|
||||
await signUpPage.fillUsername(fakerAccount.username)
|
||||
await signUpPage.clickNextButton()
|
||||
await signUpPage.clickNextButton() //Skip bio
|
||||
await signUpPage.clickNextButton() //Skip optional information
|
||||
await profilePage.clickCloseButton()
|
||||
await onboardingPage.clickRefineProfileButton()
|
||||
|
||||
Reference in New Issue
Block a user