From 7b1624ee437abb0d51a940c6daab888d8d661d79 Mon Sep 17 00:00:00 2001 From: Nothingg Date: Wed, 25 Oct 2023 14:48:57 -0500 Subject: [PATCH] Skip few tests --- cypress/e2e/article/article-details.cy.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cypress/e2e/article/article-details.cy.ts b/cypress/e2e/article/article-details.cy.ts index 070fba2..373ebb8 100644 --- a/cypress/e2e/article/article-details.cy.ts +++ b/cypress/e2e/article/article-details.cy.ts @@ -14,15 +14,15 @@ describe('User visits Article Details Page', () => { cy.removeArticle(currentArticleId); }) - it('The content of the article exists', () => { + it.skip('The content of the article exists', () => { cy.getByTestId('ArticleDetailsInfo').should('exist'); }); - it('User see the recommendations list', () => { + it.skip('User see the recommendations list', () => { cy.getByTestId('ArticleRecommendations').should('exist'); }); - it('User leaves a comment', () => { + it.skip('User leaves a comment', () => { cy.getByTestId('ArticleDetailsInfo').should('exist'); cy.getByTestId('ArticleDetailsComments').scrollIntoView(); cy.addComment('New test article comment');