0.0.3 • Published 4 years ago
cypress-jest v0.0.3
cypress-jest
Jest runner for cypress.io
Usage
npm install --save-dev cypress-jestYour jest.config.js should look like this:
module.exports = {
projects: [
{
displayName: 'cypress'
runner: 'cypress-jest',
testMatch: ['<rootDir>/**/*-cy.js'],
},
{
displayName: 'test' // Your other unit Tests with jest
}
]
}TO
- Silence Cypress STDOUT, so we just see jest's console output
Credits
This project is inspired by the work of TheBrainFamily & DanielMSchmidt in various projects: