mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-02-25 14:01:29 -05:00
* feat: add stripe donate page test for non donors * fix: revert changes to see if ev is passed correctly * feat: download artifacts * fix: add quotations for spec args with global patterns * fix: remove firefox from cypress donation tests * fix: trigger action on main push * Apply suggestions from code review Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * feat: remove matrix and simplify Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
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');
|
|
});
|
|
});
|