Skip to content

Commit

Permalink
[C-3593] signUp straight to jail (#7128)
Browse files Browse the repository at this point in the history
  • Loading branch information
DejayJD authored Jan 9, 2024
1 parent efa999e commit aff1457
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 5 additions & 1 deletion packages/probers/cypress/e2e/flaky-test-jail.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,18 @@

A list of flaky/misbehaving tests that we are currently skipping in order to keep a green baseline

## Current Inmates
## Current Inmates - [C-3508]

#### [Upload Track](./uploadTrack.cy.ts)

This entire suite is in jail.

The upload flow seems to generally take too long in CI and results in timeouts and consistent failures.

#### [Sign Up](./signUp.cy.ts) - [C-3593]

"should create an account" tests are skipped until they can be updated

<!-- Template
#### [Test Name](./link-to-test-file.cy.ts) - [ticket-number](ticket-link)
Expand Down
6 changes: 4 additions & 2 deletions packages/probers/cypress/e2e/signUp.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,8 @@ describe('Sign Up', () => {
assertOnSignUpPage()
})

it('should create an account', () => {
// [C-3593] - skipped until the test can be updated
it.skip('should create an account', () => {
testSignUp()
})
})
Expand Down Expand Up @@ -190,7 +191,8 @@ describe('Sign Up', () => {
assertOnSignUpPage()
})

it('should create an account', () => {
// [C-3593] - skipped until the test can be updated
it.skip('should create an account', () => {
testSignUp()
})
})
Expand Down

0 comments on commit aff1457

Please sign in to comment.