Skip to content

Commit

Permalink
test(cypress): skip tests failing due to textile (#3256)
Browse files Browse the repository at this point in the history
  • Loading branch information
luisecm authored May 20, 2022
1 parent 95ff64f commit 74c6c74
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion cypress/integration/chat-images-validations.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const gifImagePath = 'cypress/fixtures/images/gif-test.gif'
const invalidImagePath = 'cypress/fixtures/images/incorrect-image.png'
const path = require('path')

describe('Chat - Sending Images Tests', () => {
describe.skip('Chat - Sending Images Tests', () => {
const downloadsFolder = Cypress.config('downloadsFolder')
it('PNG image is sent successfully on chat', { retries: 2 }, () => {
//Import account
Expand Down
4 changes: 2 additions & 2 deletions cypress/integration/chat-pair-features.js
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ describe('Chat features with two accounts', () => {
})
})

it(
it.skip(
'User should be able to reply without first clicking into the chat bar - Chat User C',
{ retries: 2 },
() => {
Expand All @@ -308,7 +308,7 @@ describe('Chat features with two accounts', () => {
},
)

it(
it.skip(
'Send a message from third account to second account',
{ retries: 2 },
() => {
Expand Down
2 changes: 1 addition & 1 deletion cypress/integration/chat-top-toolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const recoverySeed =
.filter((item) => item.description === 'cypress')
.map((item) => item.recoverySeed) + '{enter}'

describe('Chat Toolbar Tests', () => {
describe.skip('Chat Toolbar Tests', () => {
it(
'Chat - Toolbar - Validate audio icon is displayed',
{ retries: 2 },
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 @@ -95,7 +95,7 @@ describe('Privacy Settings Page - Toggles Tests', () => {
})
})

it('Privacy page - Verify all non-locked toggles can be switched to enable', () => {
it.skip('Privacy page - Verify all non-locked toggles can be switched to enable', () => {
//Setting a viewport visible for all toggles
cy.viewport(1200, 1200)

Expand All @@ -111,7 +111,7 @@ describe('Privacy Settings Page - Toggles Tests', () => {
})
})

it('Privacy page - Verify all non-locked toggles can be switched to disabled', () => {
it.skip('Privacy page - Verify all non-locked toggles can be switched to disabled', () => {
//Setting a viewport visible for all toggles
cy.viewport(1200, 1200)

Expand All @@ -130,7 +130,7 @@ describe('Privacy Settings Page - Toggles Tests', () => {
cy.get('.close-button').click()
})

it('Privacy page - Validate that last values selected were saved correcty', () => {
it.skip('Privacy page - Validate that last values selected were saved correcty', () => {
//Setting a viewport visible for all toggles
cy.viewport(1200, 1200)

Expand Down

0 comments on commit 74c6c74

Please sign in to comment.