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