From 91c0b027843d3a438842e2e62d058053f4e61eec Mon Sep 17 00:00:00 2001 From: Sara Tavares <29093946+stavares843@users.noreply.github.com> Date: Wed, 18 May 2022 18:18:13 +0100 Subject: [PATCH] chore(cypress): skip tests --- cypress/integration/chat-text-validations.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cypress/integration/chat-text-validations.js b/cypress/integration/chat-text-validations.js index 625d0a3332..8e167581f1 100644 --- a/cypress/integration/chat-text-validations.js +++ b/cypress/integration/chat-text-validations.js @@ -167,7 +167,7 @@ describe('Chat Text and Sending Links Validations', () => { .should('have.text', '*To Do') }) - it('User should be able to use "\\" to write a single "" in chat', () => { + it.skip('User should be able to use "\\" to write a single "" in chat', () => { cy.chatFeaturesSendMessage('\\*To Do', false) cy.get('[data-cy=chat-message]') .last() @@ -188,7 +188,7 @@ describe('Chat Text and Sending Links Validations', () => { cy.sendMessageWithMarkdown(randomMessage, '~~') }) - it('User should use markdown "<>" to insert an autolink', () => { + it.skip('User should use markdown "<>" to insert an autolink', () => { let locatorURL = 'a[href="' + randomURL + '"]' let autolink = '<' + randomURL + '>' cy.chatFeaturesSendMessage(autolink, false)