From 954c3c05af818b05b58f4652670b2f3180365c1c Mon Sep 17 00:00:00 2001 From: helenanull Date: Fri, 2 Apr 2021 23:19:11 +0300 Subject: [PATCH] fix tests --- cypress/integration/article.spec.js | 4 ++-- cypress/integration/profile.spec.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cypress/integration/article.spec.js b/cypress/integration/article.spec.js index f39c5b8..5312ca5 100644 --- a/cypress/integration/article.spec.js +++ b/cypress/integration/article.spec.js @@ -55,13 +55,13 @@ describe('Article', () => { }) cy.get(editor.titleField).should('be.visible') // to check field value, use have.value not have.text - .and('have.value', 'My Cypress article') + .and('have.value', 'Article created by Cypress test') cy.get(editor.aboutField).should('be.visible') .and('have.value', readMoreLink) cy.get(editor.bodyField).clear() .type(`Test can edit an article. ${readMoreLink}`) cy.get(editor.publishButton).click() - cy.url().should('contain', '/article/my-cypress-article-') + cy.url().should('contain', '/article/article-created-by-cypress-test-') cy.get(article.title).should('be.visible') cy.get(article.body).should('be.visible') .and('have.text', `Test can edit an article. ${readMoreLink}`) diff --git a/cypress/integration/profile.spec.js b/cypress/integration/profile.spec.js index 9b55cbc..11f22f8 100644 --- a/cypress/integration/profile.spec.js +++ b/cypress/integration/profile.spec.js @@ -37,7 +37,7 @@ describe('Profile page', () => { cy.get(profile.favouritedArticlesTab).click() cy.get(profile.articles).should('be.visible') .and('have.length', 1) - .and('contain', 'My Cypress article') + .and('contain', 'Article created by Cypress test') }) it('can see favorited articles - mock response', function () {