hiddenNav.spec.js 341 B

123456789101112131415161718
  1. describe('Hidden Nav', () => {
  2. beforeEach(() => {
  3. cy.visit("/")
  4. cy.wait(500)
  5. });
  6. it("Footer contains promo", () => {
  7. cy.get('footer').contains("OliveTin")
  8. })
  9. it('Switcher navigation is hidden', () => {
  10. cy.get('#section-switcher').then($el => {
  11. expect(Cypress.dom.isHidden($el)).to.be.true
  12. })
  13. })
  14. });