This repository has been archived on 2025-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
wwtech-website/e2e/project.json
2023-07-04 16:03:33 +02:00

34 lines
840 B
JSON

{
"name": "e2e",
"$schema": "../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "e2e/src",
"projectType": "application",
"targets": {
"e2e": {
"executor": "@nx/cypress:cypress",
"options": {
"cypressConfig": "e2e/cypress.config.ts",
"devServerTarget": "frontpage-ns:serve:development",
"testingType": "e2e"
},
"configurations": {
"production": {
"devServerTarget": "frontpage-ns:serve:production"
},
"ci": {
"devServerTarget": "frontpage-ns:serve-static"
}
}
},
"lint": {
"executor": "@nx/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["e2e/**/*.{js,ts}"]
}
}
},
"tags": [],
"implicitDependencies": ["frontpage-ns"]
}