Skip to content

Commit

Permalink
test(cypress): skip cypress tests for timeouts (#2861)
Browse files Browse the repository at this point in the history
  • Loading branch information
luisecm authored Apr 13, 2022
1 parent 6397e92 commit 4758a67
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion cypress/integration/create-account-negative-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ describe('Create Account - Negative Tests', () => {
cy.contains('Username must be at least 5 characters.')
})

it('Try to create account with NSFW image', () => {
it.skip('Try to create account with NSFW image', () => {
//Enter PIN screen
cy.createAccountPINscreen(randomPIN)

Expand Down
4 changes: 2 additions & 2 deletions cypress/integration/create-account.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ describe('Create Account Validations', () => {
cy.createAccountSubmit()
})

it('Create account successfully without image after attempting to add a NSFW picture', () => {
it.skip('Create account successfully without image after attempting to add a NSFW picture', () => {
//Creating pin
cy.createAccountPINscreen(randomPIN)

Expand Down Expand Up @@ -148,7 +148,7 @@ describe('Create Account Validations', () => {
).should('not.exist')
})

it('Create account with valid image after attempting to add an invalid image file', () => {
it.skip('Create account with valid image after attempting to add an invalid image file', () => {
//Creating pin
cy.createAccountPINscreen(randomPIN)

Expand Down
2 changes: 1 addition & 1 deletion cypress/integration/pin-unlock-validations.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ describe('Unlock pin should be persisted when store pin is enabled', () => {
})
})

it('Create Account with store pin enabled', () => {
it.skip('Create Account with store pin enabled', () => {
//Go to URL, add a PIN and make sure that toggle for save pin is enabled
cy.createAccountPINscreen(randomPIN, true, false)

Expand Down
6 changes: 3 additions & 3 deletions cypress/integration/privacy-page-toggles.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ describe('Privacy Page Toggles Tests', () => {
})
})

it('Privacy page - Verify user can still proceed after adjusting switches', () => {
it.skip('Privacy page - Verify user can still proceed after adjusting switches', () => {
//Click on next
cy.get('#custom-cursor-area').click()

Expand All @@ -62,7 +62,7 @@ describe('Privacy Page Toggles Tests', () => {
}).click()
})

it('Profile - Verify the toggles user added when signing up are on the same status when user goes to settings', () => {
it.skip('Profile - Verify the toggles user added when signing up are on the same status when user goes to settings', () => {
cy.contains('Privacy').click()
//Storing the values from toggle switches status of Settings screen into an array
cy.get('.switch-button')
Expand All @@ -81,7 +81,7 @@ describe('Privacy Page Toggles Tests', () => {
})
})

it('Profile - Verify user can’t update the register name publicly toggle on settings', () => {
it.skip('Profile - Verify user can’t update the register name publicly toggle on settings', () => {
//Identify the first switch button and ensure that is locked
cy.get('.switch-button').first().should('have.class', 'locked')
})
Expand Down

0 comments on commit 4758a67

Please sign in to comment.