From 4e67aeb9846ad9c58a47e1be8efcb746f3a68f77 Mon Sep 17 00:00:00 2001 From: helenanull Date: Wed, 31 Mar 2021 23:12:25 +0300 Subject: [PATCH] small improvements --- cypress/integration/article.spec.js | 2 +- cypress/integration/comments.spec.js | 4 +++- cypress/integration/profile.spec.js | 7 +++---- cypress/selectors/article.sel.js | 3 ++- 4 files changed, 9 insertions(+), 7 deletions(-) diff --git a/cypress/integration/article.spec.js b/cypress/integration/article.spec.js index 0279b7b..01cef1a 100644 --- a/cypress/integration/article.spec.js +++ b/cypress/integration/article.spec.js @@ -49,7 +49,7 @@ describe('Article', () => { it('can edit an article', () => { // we already know if creating an article works or not from the first test - // we can now use shortcut (cy.createArticle() command) to test other scenarios + // we can now use a shortcut (cy.createArticle() command) to test other scenarios cy.createArticle().then((link) => { cy.visit(`/editor/${link}`) }) diff --git a/cypress/integration/comments.spec.js b/cypress/integration/comments.spec.js index db8e622..ef58bb9 100644 --- a/cypress/integration/comments.spec.js +++ b/cypress/integration/comments.spec.js @@ -14,12 +14,14 @@ describe('Comments', () => { }) }) - it('can add a comment to article', () => { + it('can add a comment to article', function () { cy.get(article.comments).should('have.length', 0) cy.get(article.commentField).type('Cypress comment') cy.get(article.postCommentButton).should('contain', 'Post Comment').click() cy.get(article.comments).should('be.visible') .and('have.length', 1) cy.get(article.commentField).should('have.value', '') + cy.get(article.commentUsername).should('be.visible') + .and('have.text', this.username) }) }) diff --git a/cypress/integration/profile.spec.js b/cypress/integration/profile.spec.js index 11f0086..9b55cbc 100644 --- a/cypress/integration/profile.spec.js +++ b/cypress/integration/profile.spec.js @@ -21,11 +21,10 @@ describe('Profile page', () => { it('can see favorited articles', function () { const apiUrl = Cypress.env('apiUrl') - // we already test adding favorite in home spec, we know it works - // here we can use API to favourite an article (then we have tested it E2E) - // create a new article + // we already test adding favorite from UI in home spec + // here we can use API to favourite an article and bypass UI cy.createArticle().then((link) => { - // and then add newly created article to favorites + // add newly created article to favorites cy.request({ method: 'POST', url: `${apiUrl}/articles/${link}/favorite`, diff --git a/cypress/selectors/article.sel.js b/cypress/selectors/article.sel.js index 41a0457..1b16a9c 100644 --- a/cypress/selectors/article.sel.js +++ b/cypress/selectors/article.sel.js @@ -6,5 +6,6 @@ module.exports = { tags: '.tag-list li', comments: '[ng-repeat*=".comments"] .card-block', commentField: '.card.comment-form textarea', - postCommentButton: '.card.comment-form .btn' + postCommentButton: '.card.comment-form .btn', + commentUsername: '.comment-author.ng-binding' }