nx/e2e/cypress/project.json
2022-05-30 20:10:02 -04:00

35 lines
842 B
JSON

{
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "e2e/cypress",
"projectType": "application",
"targets": {
"e2e": {
"executor": "@nrwl/workspace:run-commands",
"options": {
"commands": [
{
"command": "yarn e2e-start-local-registry"
},
{
"command": "yarn e2e-build-package-publish"
},
{
"command": "nx run-e2e-tests e2e-cypress"
}
],
"parallel": false
}
},
"run-e2e-tests": {
"executor": "@nrwl/jest:jest",
"options": {
"jestConfig": "e2e/cypress/jest.config.ts",
"passWithNoTests": true,
"runInBand": true
},
"outputs": ["coverage/e2e/cypress"]
}
},
"implicitDependencies": ["cypress", "react"]
}