30cc89fe25
Co-authored-by: Dominik Pschenitschni <mail@celement.de> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/971 Reviewed-by: konrad <k@knt.li> Co-authored-by: dpschen <dpschen@noreply.kolaente.de> Co-committed-by: dpschen <dpschen@noreply.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')
|
|
})
|
|
})
|