koel/cypress/integration/about.spec.ts

10 lines
324 B
TypeScript
Raw Normal View History

2021-01-04 23:05:29 +00:00
context('About Koel', () => {
beforeEach(() => cy.$login())
it('displays the About modal', () => {
cy.findByTestId('about-btn').click()
cy.findByTestId('about-modal').should('be.visible').within(() => cy.get('[data-test=close-modal-btn]').click())
cy.findByTestId('about-modal').should('not.exist')
})
})