diff --git a/cypress/integration/profile.spec.js b/cypress/integration/profile.spec.js index c6e40ab..def373b 100644 --- a/cypress/integration/profile.spec.js +++ b/cypress/integration/profile.spec.js @@ -18,6 +18,14 @@ describe('Profile page', () => { cy.get(profile.favouritedArticlesTab).should('be.visible') }) + it('can see created articles', function () { + cy.createArticle() + cy.visit(`/@${this.username}`) + cy.get(profile.articles).should('be.visible') + .and('have.length', 1) + .and('contain', 'Article created by Cypress test') + }) + it('can see favorited articles', function () { const apiUrl = Cypress.env('apiUrl') // we already test adding favorite from UI in home spec