Files
freeCodeCamp/cypress/integration/learn/header/header-nav-links.js

14 lines
471 B
JavaScript
Raw Permalink Normal View History

describe('Navigation links', () => {
it('should render the expected forum and news links.', () => {
cy.visit('/learn');
cy.get('.toggle-button-nav').should('be.visible');
cy.get('.toggle-button-nav').click();
cy.get('.nav-list')
.contains('Forum')
.should('have.attr', 'href', 'https://forum.freecodecamp.org/');
cy.get('.nav-list')
.contains('News')
.should('have.attr', 'href', 'https://freecodecamp.org/news/');
});
});