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.

36 lines
1.3 KiB
JavaScript

import profile from '../selectors/profile.sel'
describe('Profile page', () => {
beforeEach(() => {
cy.register().then((email) => {
// we need username to visit profile url
cy.wrap(email.split('@')[0]).as('username')
cy.login(email)
})
})
it('contains correct elements', function () {
cy.visit(`/@${this.username}`)
cy.get(profile.editProfileButton).should('be.visible')
.and('have.attr', 'href', '#/settings')
cy.get(profile.userInfoArea).should('be.visible')
cy.get(profile.myArticlesTab).should('be.visible')
.and('have.css', 'color', 'rgb(92, 184, 92)')
cy.get(profile.favouritedArticlesTab).should('be.visible')
})
it('can see favorited articles', function () {
const apiUrl = Cypress.env('apiUrl')
// we already test adding favourites in home spec
// here we can mock my favourited articles list
cy.intercept(`${apiUrl}/articles?favorited=${this.username}&limit=5&offset=0*`, {
fixture: 'favorited_list'
})
cy.visit(`/@${this.username}`)
cy.get(profile.favouritedArticlesTab).click()
cy.get(profile.articles).should('be.visible')
.and('have.length', 1)
.and('contain', 'My Cypress article')
})
})