mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-12 00:55:34 +00:00
19 lines
341 B
JavaScript
19 lines
341 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('#section-switcher').then($el => {
|
|
expect(Cypress.dom.isHidden($el)).to.be.true
|
|
})
|
|
})
|
|
});
|
|
|
|
|