nx/nx-dev/nx-dev-e2e/project.json
James Henry 03c378cb35
chore(nxdev): enable e2e testing for nx-dev (#10088)
* chore(nxdev): enable e2e testing for nx-dev

* chore(nxdev): remove vercel github workflow, run on circle

* chore(repo): try and fix cypress on circle

* chore(repo): try and fix cypress on circle

* chore(repo): update node dep cache key to include package.json
2022-05-05 12:54:32 -04:00

28 lines
695 B
JSON

{
"sourceRoot": "nx-dev/nx-dev-e2e/src",
"projectType": "application",
"targets": {
"e2e": {
"executor": "@nrwl/cypress:cypress",
"options": {
"cypressConfig": "nx-dev/nx-dev-e2e/cypress.json",
"devServerTarget": "nx-dev:serve:development"
},
"configurations": {
"production": {
"devServerTarget": "nx-dev:serve:production"
}
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": ["nx-dev/nx-dev-e2e/**/*.{js,ts}"]
},
"outputs": ["{options.outputFile}"]
}
},
"tags": ["scope:nx-dev", "type:e2e"],
"implicitDependencies": ["nx-dev"]
}