Files
freeCodeCamp/cypress/integration/default/learn/coding-interview-prep/intro-page.js
Ahmad Abdolsaheb 29e4a18a56 feat(tools): donation tests (#46633)
* 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>
2022-08-08 08:43:23 -07:00

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');
});
});