소스 검색

cicd: Fix broken unit test for hidden nav

jamesread 4 년 전
부모
커밋
acaf28e200
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      integration-tests/cypress/integration/hiddenNav/hiddenNav.spec.js

+ 1 - 1
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
     })
   })