0f4e6fa3f2
Co-authored-by: kolaente <k@knt.li> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/2015 Co-authored-by: renovate <renovatebot@kolaente.de> Co-committed-by: renovate <renovatebot@kolaente.de>
29 lines
723 B
JavaScript
29 lines
723 B
JavaScript
import '../../support/authenticateUser'
|
|
|
|
describe('The Menu', () => {
|
|
it('Is visible by default on desktop', () => {
|
|
cy.get('.namespace-container')
|
|
.should('have.class', 'is-active')
|
|
})
|
|
|
|
it('Can be hidden on desktop', () => {
|
|
cy.get('button.menu-show-button:visible')
|
|
.click()
|
|
cy.get('.namespace-container')
|
|
.should('not.have.class', 'is-active')
|
|
})
|
|
|
|
it('Is hidden by default on mobile', () => {
|
|
cy.viewport('iphone-8')
|
|
cy.get('.namespace-container')
|
|
.should('not.have.class', 'is-active')
|
|
})
|
|
|
|
it('Is can be shown on mobile', () => {
|
|
cy.viewport('iphone-8')
|
|
cy.get('button.menu-show-button:visible')
|
|
.click()
|
|
cy.get('.namespace-container')
|
|
.should('have.class', 'is-active')
|
|
})
|
|
})
|