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.

34 lines
1.2 KiB
JavaScript

import home from '../selectors/home.sel'
describe('Home page', () => {
it('contains correct elements when logged out', () => {
cy.visit('')
cy.get(home.globalFeedTab).should('be.visible')
.and('contain', 'Global Feed')
.and('have.css', 'color', 'rgb(92, 184, 92)')
cy.get(home.yourFeedTab).should('not.be.visible')
cy.get(home.articles).should('be.visible')
.and('have.length', 10)
cy.get(home.sidebar).should('be.visible')
cy.get(home.sidebarTags).should('be.visible')
.and('have.length', 20)
})
it('contains correct elements when logged in', () => {
// mock my feed data
cy.intercept('https://conduit.productionready.io/api/articles/feed?limit=10*', {
fixture: 'my_feed'
})
cy.register().then((email) => {
cy.login(email)
})
cy.visit('')
cy.get(home.yourFeedTab).should('be.visible')
cy.get(home.globalFeedTab).should('be.visible')
cy.get(home.articles).should('be.visible')
.and('have.length', 1)
cy.get(home.sidebarTags).should('be.visible')
.and('have.length', 20)
})
})