Colum Ferry dde045afa9
cleanup(angular): add e2e test for make-angular-cli-faster on nightly (#11463)
This is a bit of a misnomer, hence it running on the nightly tests. It uses _only_ the published
versions of `@nrwl/*` packages on npmjs registry, due to a limitation with verdaccio, where it only
looks at the local registry for `@nrwl/*` packages.
2022-08-17 10:51:53 -04:00

35 lines
900 B
JSON

{
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "e2e/make-angular-cli-faster",
"projectType": "application",
"targets": {
"e2e": {
"executor": "nx:run-commands",
"options": {
"commands": [
{
"command": "yarn e2e-start-local-registry"
},
{
"command": "yarn e2e-build-package-publish"
},
{
"command": "nx run-e2e-tests e2e-make-angular-cli-faster"
}
],
"parallel": false
}
},
"run-e2e-tests": {
"executor": "@nrwl/jest:jest",
"options": {
"jestConfig": "e2e/make-angular-cli-faster/jest.config.ts",
"passWithNoTests": true,
"runInBand": true
},
"outputs": ["coverage/e2e/make-angular-cli-faster"]
}
},
"implicitDependencies": ["make-angular-cli-faster"]
}