Files
freeCodeCamp/cypress/integration/learn/header/header-nav-links.js
Nicholas Carrigan (he/him) 7e8a05ac1c feat(tools): test navigation links (#43080)
* feat(tools): test navigation links

* fix(tools): use single it
2021-07-31 12:51:50 +05:30

16 lines
488 B
JavaScript

/* global cy */
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/');
});
});