From acaf28e2004ddf8f96d13e80f0a2d99afd28c00d Mon Sep 17 00:00:00 2001 From: jamesread Date: Thu, 6 Jan 2022 00:00:54 +0000 Subject: [PATCH] cicd: Fix broken unit test for hidden nav --- .../cypress/integration/hiddenNav/hiddenNav.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/cypress/integration/hiddenNav/hiddenNav.spec.js b/integration-tests/cypress/integration/hiddenNav/hiddenNav.spec.js index 62a1f15e..5714ab54 100644 --- a/integration-tests/cypress/integration/hiddenNav/hiddenNav.spec.js +++ b/integration-tests/cypress/integration/hiddenNav/hiddenNav.spec.js @@ -9,7 +9,7 @@ describe('Hidden Nav', () => { }) it('Switcher navigation is hidden', () => { - cy.get('#switcher').then($el => { + cy.get('#sectionSwitcher').then($el => { expect(Cypress.dom.isHidden($el)).to.be.true }) })