mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2025-12-19 18:18:27 -05:00
11 lines
365 B
TypeScript
11 lines
365 B
TypeScript
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');
|
|
});
|
|
});
|