From 1a5ae7514078a1ff79de06ac996e81f38bdfd853 Mon Sep 17 00:00:00 2001 From: Suzanne Aitchison Date: Thu, 15 Apr 2021 13:25:27 +0100 Subject: [PATCH] Disable reply with autocomplete test due to flakiness (#13409) * disable reply with autocomplete test due to flakiness * change to use skip --- cypress/integration/articleFlows/commentOnArticle.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cypress/integration/articleFlows/commentOnArticle.spec.js b/cypress/integration/articleFlows/commentOnArticle.spec.js index af26e084f..08c1b2cf8 100644 --- a/cypress/integration/articleFlows/commentOnArticle.spec.js +++ b/cypress/integration/articleFlows/commentOnArticle.spec.js @@ -18,7 +18,7 @@ describe('Comment on articles', () => { }); describe('Comments using mention autocomplete', () => { - xit('should comment on an article with user mention autocomplete suggesting max 6 users', () => { + it.skip('should comment on an article with user mention autocomplete suggesting max 6 users', () => { cy.intercept( { method: 'GET', url: '/search/usernames' }, { fixture: 'search/usernames.json' }, @@ -259,7 +259,7 @@ describe('Comment on articles', () => { cy.get('@plainTextArea').should('be.visible'); }); - it('should reply to a comment with user mention autocomplete', () => { + it.skip('should reply to a comment with user mention autocomplete', () => { cy.intercept( { method: 'GET', url: '/search/usernames' }, { fixture: 'search/usernames.json' },