28 lines
850 B
JavaScript
28 lines
850 B
JavaScript
describe('Create plan modal on the home page', () => {
|
|
beforeEach(() => {
|
|
cy.exec('npm run db:seed')
|
|
cy.intercept('GET', '/api/texts').as('getTexts')
|
|
cy.visit('/home')
|
|
cy.wait('@getTexts')
|
|
})
|
|
|
|
afterEach(() => {
|
|
cy.exec('npm run db:wipe')
|
|
})
|
|
|
|
it('shows a "Create plan" button on each text', () => {
|
|
cy.get('#texts-list li').each((textItem) => {
|
|
cy.wrap(textItem).find('button.create-plan').should('exist')
|
|
})
|
|
})
|
|
|
|
it('hides the create plan modal by default', () => {
|
|
cy.get('#create-plan-modal').should('not.be.visible')
|
|
})
|
|
|
|
it('shows the modal when clicking "Create plan"', () => {
|
|
cy.get('#texts-list li').first()
|
|
.find('button.create-plan').click()
|
|
cy.get('#create-plan-modal').should('be.visible')
|
|
})
|
|
})
|