mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-27 15:04:25 -05:00
11 lines
365 B
JavaScript
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');
|
|
});
|
|
});
|