diff --git a/cypress/e2e/homepage.cy.js b/cypress/e2e/homepage.cy.js index 098127ef..64e7e08c 100644 --- a/cypress/e2e/homepage.cy.js +++ b/cypress/e2e/homepage.cy.js @@ -3,4 +3,8 @@ describe('Homepage', () => { cy.visit('') cy.get('h1').should('contain', 'Welcome to the SPARC Portal') }) + it('Navigation Bar', () => { + cy.visit('') + cy.get('.mobile-navigation > :nth-child(1) > :nth-child(1) > a').should('contain', 'Data') + }) })