NX
Running cypress tests in parallel with Currents for NX projects
Running cypress tests in NX project with Currents
Example
Setting up cypress with NX
npm i --save-dev @currents/nx cypress-cloud
# install cypress if needed
npm i --save-dev cypress{
"targets": {
"currents": {
"executor": "@currents/nx:currents",
"options": {
"record": true,
"parallel": true,
"cypressConfig": "apps/app-e2e/cypres.config.ts",
"devServerTarget": "my-react-app:serve",
"testingType": "e2e"
}
}
}
}
Usage
Last updated
Was this helpful?