added more tests

master
helenanull 4 years ago
parent 45d76973d9
commit 2728404636

@ -11,6 +11,26 @@ describe('Article', () => {
})
})
it('logged out user can see article page', function () {
cy.createArticle().then((link) => {
// log out to visit article as logged out user
cy.clearCookies()
cy.clearLocalStorage()
cy.visit(`/article/${link}`)
})
cy.get(article.title).should('be.visible')
cy.get(article.banner).should('be.visible')
cy.get(article.author).should('be.visible')
.and('have.text', this.username)
cy.get(article.followButton).should('be.visible')
.and('contain', `Follow ${this.username}`)
cy.get(article.favoriteButton).should('be.visible')
cy.get(article.body).should('be.visible')
cy.get(article.commentTextForLoggedOutUsers).should('be.visible')
.and('contain', 'Sign in or sign up to add comments on this article')
cy.get(article.actions).should('be.visible')
})
it('can create a new article', () => {
cy.visit('/editor/')
cy.get(editor.titleField).type('My post title')

@ -7,5 +7,11 @@ module.exports = {
comments: '[ng-repeat*=".comments"] .card-block',
commentField: '.card.comment-form textarea',
postCommentButton: '.card.comment-form .btn',
commentUsername: '.comment-author.ng-binding'
commentUsername: '.comment-author.ng-binding',
banner: '.banner',
author: '.banner .author',
followButton: '.banner follow-btn',
favoriteButton: '.banner favorite-btn',
actions: '.article-actions',
commentTextForLoggedOutUsers: 'p[show-authed=false]'
}

Loading…
Cancel
Save