mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
9 lines
321 B
TypeScript
9 lines
321 B
TypeScript
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.findByTestId('close-modal-btn').click())
|
|
cy.findByTestId('about-modal').should('not.exist')
|
|
})
|
|
})
|