some fixes and added more tests
parent
38d43dffba
commit
109f11d303
@ -0,0 +1,25 @@
|
|||||||
|
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', () => {
|
||||||
|
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', '')
|
||||||
|
})
|
||||||
|
})
|
Loading…
Reference in New Issue