19 lines
340 B
JavaScript
19 lines
340 B
JavaScript
describe('Hidden Nav', () => {
|
|
beforeEach(() => {
|
|
cy.visit("/")
|
|
cy.wait(500)
|
|
});
|
|
|
|
it("Footer contains promo", () => {
|
|
cy.get('footer').contains("OliveTin")
|
|
})
|
|
|
|
it('Switcher navigation is hidden', () => {
|
|
cy.get('#sectionSwitcher').then($el => {
|
|
expect(Cypress.dom.isHidden($el)).to.be.true
|
|
})
|
|
})
|
|
});
|
|
|
|
|