added homepage tests
parent
83044407b1
commit
868b32e76a
@ -0,0 +1,26 @@
|
||||
{
|
||||
"articles": [
|
||||
{
|
||||
"title": "Hello",
|
||||
"slug": "kkk-y2bee3",
|
||||
"body": "oiojojoj",
|
||||
"createdAt": "2021-01-15T09:41:26.527Z",
|
||||
"updatedAt": "2021-01-15T09:41:26.527Z",
|
||||
"tagList": [
|
||||
"cypress",
|
||||
"is",
|
||||
"great"
|
||||
],
|
||||
"description": "description of the article",
|
||||
"author": {
|
||||
"username": "cypress",
|
||||
"bio": null,
|
||||
"image": "https://static.productionready.io/images/smiley-cyrus.jpg",
|
||||
"following": true
|
||||
},
|
||||
"favorited": false,
|
||||
"favoritesCount": 15
|
||||
}
|
||||
],
|
||||
"articlesCount": 1
|
||||
}
|
@ -0,0 +1,33 @@
|
||||
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)
|
||||
})
|
||||
})
|
@ -0,0 +1,7 @@
|
||||
module.exports = {
|
||||
yourFeedTab: '[ng-class*=feed]',
|
||||
globalFeedTab: '[ng-class*=all]',
|
||||
articles: 'article-list [ng-repeat*="ctrl.list"] .article-preview',
|
||||
sidebar: '.sidebar',
|
||||
sidebarTags: '.sidebar .tag-default'
|
||||
}
|
Loading…
Reference in New Issue