From a7d29cb3dffb6c52631d198d49e907718f12ed49 Mon Sep 17 00:00:00 2001 From: Mac Siri Date: Thu, 1 Apr 2021 16:45:14 -0400 Subject: [PATCH] Skip a flaky e2e spec (#13225) --- cypress/integration/articleFlows/commentOnArticle.spec.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cypress/integration/articleFlows/commentOnArticle.spec.js b/cypress/integration/articleFlows/commentOnArticle.spec.js index 8f1c90fb0..1ed8742ba 100644 --- a/cypress/integration/articleFlows/commentOnArticle.spec.js +++ b/cypress/integration/articleFlows/commentOnArticle.spec.js @@ -202,7 +202,8 @@ describe('Comment on articles', () => { cy.findByText('@search_user_1').should('not.be.visible'); }); - it('should reply to a comment with user mention autocomplete', () => { + // TODO: Flaky spec + xit('should reply to a comment with user mention autocomplete', () => { cy.intercept( { method: 'GET', url: '/search/usernames' }, { fixture: 'search/usernames.json' },