0b6670633e
* test: add some tests to be run on live environments * chore: move live env tests to separate file
39 lines
969 B
JSON
39 lines
969 B
JSON
{
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "apps/trading-e2e/src",
|
|
"projectType": "application",
|
|
"targets": {
|
|
"e2e": {
|
|
"executor": "@nrwl/cypress:cypress",
|
|
"options": {
|
|
"cypressConfig": "apps/trading-e2e/cypress.config.js",
|
|
"devServerTarget": "trading:serve"
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"devServerTarget": "trading:serve:production"
|
|
},
|
|
"live": {
|
|
"devServerTarget": ""
|
|
}
|
|
}
|
|
},
|
|
"lint": {
|
|
"executor": "@nrwl/linter:eslint",
|
|
"outputs": ["{options.outputFile}"],
|
|
"options": {
|
|
"lintFilePatterns": ["apps/trading-e2e/**/*.{js,ts}"]
|
|
}
|
|
},
|
|
"build": {
|
|
"executor": "@nrwl/workspace:run-commands",
|
|
"outputs": [],
|
|
"options": {
|
|
"command": "yarn tsc --project ./apps/trading-e2e/"
|
|
}
|
|
}
|
|
},
|
|
"tags": [],
|
|
"implicitDependencies": ["trading"]
|
|
}
|