diff --git a/integration/bazel-schematics/angular.json.original b/integration/bazel-schematics/angular.json.original index 9c70cea203..a9d121b615 100644 --- a/integration/bazel-schematics/angular.json.original +++ b/integration/bazel-schematics/angular.json.original @@ -62,6 +62,9 @@ "configurations": { "production": { "browserTarget": "demo:build:production" + }, + "ci": { + "progress": false } } }, @@ -116,6 +119,9 @@ "configurations": { "production": { "devServerTarget": "demo:serve:production" + }, + "ci": { + "devServerTarget": "demo:serve:ci" } } }, @@ -132,4 +138,4 @@ } }, "defaultProject": "demo" -} \ No newline at end of file +} diff --git a/integration/bazel-schematics/test.sh b/integration/bazel-schematics/test.sh index b939e4f666..8150921266 100755 --- a/integration/bazel-schematics/test.sh +++ b/integration/bazel-schematics/test.sh @@ -28,9 +28,9 @@ function testNonBazel() { rm -rf dist src/main.dev.ts src/main.prod.ts # Just make a symlink instead of full yarn install to expose node_modules ln -s $(bazel info output_base)/external/npm/node_modules node_modules - ng build - ng test --watch=false - ng e2e + ng build --progress=false + ng test --progress=false --watch=false + ng e2e --configuration=ci } testBazel