You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
1.0 KiB
JavaScript

import article from '../selectors/article.sel'
describe('Comments', () => {
beforeEach(() => {
cy.register().then((email) => {
cy.wrap(email.split('@')[0]).as('username')
cy.login(email)
})
cy.createArticle().then((link) => {
cy.intercept('/api/articles/*/comments').as('commentsRequest')
cy.visit(`/article/${link}`)
// wait for comments to be loaded before starting with tests
cy.wait('@commentsRequest')
})
})
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)
})
})