fix tests

master
helenanull 4 years ago
parent 1d059d7ddb
commit 954c3c05af

@ -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}`)

@ -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 () {

Loading…
Cancel
Save