Files
freeCodeCamp/cypress/e2e/default/learn/coding-interview-prep/intro-page.js
Niraj Nandish 0214eb2488 feat: cypress 10 (#47886)
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
2022-10-11 18:40:25 +05:30

11 lines
365 B
JavaScript

describe('Certification intro page', () => {
it('Should render', () => {
cy.visit('/learn/coding-interview-prep');
cy.contains(
"If you're looking for free coding exercises to prepare for your next job interview, we've got you covered."
).should('be.visible');
cy.title().should('eq', 'Coding Interview Prep | freeCodeCamp.org');
});
});