https://github.com/danielmschmidt/jest-runner-cypress-io
Jest runner for cypress
https://github.com/danielmschmidt/jest-runner-cypress-io
Last synced: 4 months ago
JSON representation
Jest runner for cypress
- Host: GitHub
- URL: https://github.com/danielmschmidt/jest-runner-cypress-io
- Owner: DanielMSchmidt
- License: mit
- Created: 2018-03-01T12:08:56.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2026-02-25T18:02:47.000Z (4 months ago)
- Last Synced: 2026-02-25T21:00:07.908Z (4 months ago)
- Language: JavaScript
- Size: 545 KB
- Stars: 7
- Watchers: 0
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# jest-runner-cypress-io [](https://travis-ci.org/DanielMSchmidt/jest-runner-cypress-io)
Jest runner for cypress.io
# Usage
Make sure you have standard already installed.
```
npm install --save-dev jest-runner-cypress-io
```
Your `jest.config.js` should look like this:
```javascript
module.exports = {
projects: [
{
displayName: 'cypress'
runner: 'jest-runner-cypress-io',
testMatch: ['/**/*-cy.js'],
},
{
displayName: 'test' // Unit Tests with jest
}
]
}
```
# Credits
This project is inspired by the work of TheBrainFamily in various projects:
* [jest-runner-cypress](https://github.com/TheBrainFamily/jest-runner-cypress)
* [jest-runner-standard](https://github.com/TheBrainFamily/jest-runner-standard)