Files
PHANTOM/tests/e2e/project.json

50 lines
978 B
JSON

{
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"name": "e2e",
"projectType": "application",
"sourceRoot": "tests/e2e",
"targets": {
"install": {
"executor": "nx:run-commands",
"options": {
"command": "npm install",
"cwd": "tests/e2e"
}
},
"test": {
"executor": "nx:run-commands",
"outputs": [
"{projectRoot}/test-results"
],
"options": {
"command": "make test.e2e",
"cwd": "."
}
},
"test-ui": {
"executor": "nx:run-commands",
"dependsOn": [
"install"
],
"options": {
"command": "npm run test:ui",
"cwd": "tests/e2e"
}
},
"test-debug": {
"executor": "nx:run-commands",
"dependsOn": [
"install"
],
"options": {
"command": "npm run test:debug",
"cwd": "tests/e2e"
}
}
},
"tags": [
"scope:test",
"type:e2e"
]
}