Add frontend tests for list history
This commit is contained in:
parent
9b4efc773b
commit
f3d4295049
1 changed files with 30 additions and 0 deletions
|
@ -511,4 +511,34 @@ describe('Lists', () => {
|
||||||
.should('not.contain', task.title)
|
.should('not.contain', task.title)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
describe('List history', () => {
|
||||||
|
it('should show a list history on the home page', () => {
|
||||||
|
const lists = ListFactory.create(6)
|
||||||
|
|
||||||
|
cy.visit('/')
|
||||||
|
cy.get('h3')
|
||||||
|
.contains('Last viewed')
|
||||||
|
.should('not.exist')
|
||||||
|
|
||||||
|
cy.visit(`/lists/${lists[0].id}`)
|
||||||
|
cy.visit(`/lists/${lists[1].id}`)
|
||||||
|
cy.visit(`/lists/${lists[2].id}`)
|
||||||
|
cy.visit(`/lists/${lists[3].id}`)
|
||||||
|
cy.visit(`/lists/${lists[4].id}`)
|
||||||
|
cy.visit(`/lists/${lists[5].id}`)
|
||||||
|
|
||||||
|
cy.visit('/')
|
||||||
|
cy.get('h3')
|
||||||
|
.contains('Last viewed')
|
||||||
|
.should('exist')
|
||||||
|
cy.get('.list-cards-wrapper-2-rows')
|
||||||
|
.should('not.contain', lists[0].title)
|
||||||
|
.should('contain', lists[1].title)
|
||||||
|
.should('contain', lists[2].title)
|
||||||
|
.should('contain', lists[3].title)
|
||||||
|
.should('contain', lists[4].title)
|
||||||
|
.should('contain', lists[5].title)
|
||||||
|
})
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue