Skip to content

Commit

Permalink
Disable sign up referral e2e test till it can be refactored (#7975)
Browse files Browse the repository at this point in the history
  • Loading branch information
DejayJD authored Mar 28, 2024
1 parent 361d87e commit cbcecb5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/web/e2e/auth.setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const authFile = 'playwright/.auth/user.json'
setup('authenticate', async ({ page }) => {
await page.goto(`/feed?login=${base64Entropy}`)
const usernameLocator = page.getByText('probertest')
await expect(usernameLocator).toBeVisible()
await expect(usernameLocator).toBeVisible({ timeout: 15000 })
await page.evaluate(() => {
localStorage.setItem('HAS_REQUESTED_BROWSER_PUSH_PERMISSION', 'true')
})
Expand Down
4 changes: 2 additions & 2 deletions packages/web/e2e/signUp.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ test.describe('Sign Up', () => {
})
})

test('should sign up from a referral', async ({ page }) => {
test.fixme('should sign up from a referral', async ({ page }) => {
await testSignUp({
isMobile: true,
signUpUrl: `/signup?ref=dejayjdstaging`,
Expand Down Expand Up @@ -249,7 +249,7 @@ test.describe('Sign Up', () => {
test('should go through whole sign up flow', async ({ page }) => {
await testSignUp({ isMobile: true, page })
})
test('should sign up from a referral', async ({ page }) => {
test.fixme('should sign up from a referral', async ({ page }) => {
await testSignUp({
isMobile: true,
signUpUrl: `/signup?ref=dejayjdstaging`,
Expand Down

0 comments on commit cbcecb5

Please sign in to comment.