nx/nx-dev/nx-dev-e2e/project.json
2023-04-27 14:21:04 -04:00

26 lines
629 B
JSON

{
"name": "nx-dev-e2e",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "nx-dev/nx-dev-e2e/src",
"projectType": "application",
"targets": {
"e2e": {
"dependsOn": [
{
"target": "build-base",
"dependencies": true
}
],
"executor": "@nx/cypress:cypress",
"options": {
"cypressConfig": "nx-dev/nx-dev-e2e/cypress.config.ts",
"devServerTarget": "nx-dev:serve:production",
"testingType": "e2e"
}
},
"lint": {}
},
"tags": ["scope:nx-dev", "type:e2e"],
"implicitDependencies": ["nx-dev"]
}