Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/saucelabs/sauce-cypress-runner
Sauce Labs test runner image for saucectl to run Cypress tests using Sauce Labs Testrunner Toolkit.
https://github.com/saucelabs/sauce-cypress-runner
cypress saucectl saucelabs testrunner-toolkit
Last synced: 2 months ago
JSON representation
Sauce Labs test runner image for saucectl to run Cypress tests using Sauce Labs Testrunner Toolkit.
- Host: GitHub
- URL: https://github.com/saucelabs/sauce-cypress-runner
- Owner: saucelabs
- License: mit
- Created: 2020-06-28T21:26:33.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-10-18T18:38:58.000Z (3 months ago)
- Last Synced: 2024-10-21T03:16:52.771Z (3 months ago)
- Topics: cypress, saucectl, saucelabs, testrunner-toolkit
- Language: JavaScript
- Homepage: https://opensource.saucelabs.com/testrunner-toolkit
- Size: 5.05 MB
- Stars: 4
- Watchers: 5
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
Sauce Cypress Runner
====================Sauce Labs test runner image for [`saucectl`](https://github.com/saucelabs/saucectl) to run [Cypress](https://www.cypress.io/) tests using [saucectl](https://docs.saucelabs.com/dev/cli/saucectl/). This repository contains the code that is being executed in Sauce Labs when running `saucectl run`.
If you are interested to contribute to this project, please have a look into our [contribution guidelines](https://github.com/saucelabs/sauce-cypress-runner/blob/main/CONTRIBUTING.md).
## Run Tests
### Integration tests
`npm run test` triggers the [integration tests script](/tests/integration/integration-tests.sh). Which triggers the [tests](/tests/integration/) and runs them through `cypress-runner.js`.
### Env Variables
#### `SAUCE_CYPRESS_VIDEO_RECORDING`
This env variable is for controlling cypress native video recording.
`true`/`1` will enable cypress native video recording.
`false`/`0` will stop cypress native video recording.```sh
saucectl run -e SAUCE_CYPRESS_VIDEO_RECORDING=true
```