A demo with CypressIO. The more tools we learn, the better chance we have at recognizing when they are valuable.
- Start the Cypress Test Runner
npx cypress open
- Start your web server (if hitting a local dev server)
- Select one of the tests in the runner and a browser from the list to start
- To run all tests
npx cypress run
- To run a single test
npx cypress run --spec cypress/integration/name_of_spec.js
- This will record video examples
- Run
npx cypress run --help