Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 374 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 374 Bytes

cypress

E2E tests written with cypress.io.

Running tests

To open Cypress in development mode with UI:

npm run open

To run ALL tests in headless mode (suitable for Docker):

npm test

To run a specific test in headless mode (suitable for Docker): npm test -- --spec=cypress/integration/test file name

npm run ci