/cypress-k6

Smoke tests for a front page search and a load test of an API

Primary LanguageJavaScript

Cypress and K6

Smoke tests for a front page search and a load test of an API

Cypress

To run the Cypress specs in interactive mode:

yarn install
yarn cypress open

And in headless mode:

yarn install
yarn cypress run

CI/CD guides and examples

K6

Installation steps for K6

To run the K6 tests:

k6 run k6/name_of_test.js

With JSON output:

k6 run --out json=my_test_result.json k6/name_of_test.js

CI/CD guides and examples