Skip to content

Commit

Permalink
fix(bazel): ng test should run specific ts_web_test_suite (#30526)
Browse files Browse the repository at this point in the history
PR closes #30191

PR Close #30526
  • Loading branch information
kyliau authored and jasonaden committed May 20, 2019
1 parent a5a2d52 commit 8bc4da8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/bazel/src/schematics/ng-add/index.ts
Expand Up @@ -174,7 +174,10 @@ function updateAngularJsonToUseBazelBuilder(options: Schema): Rule {
replacePropertyInAstObject(
recorder, architect, 'test', {
builder: '@angular/bazel:build',
options: {'bazelCommand': 'test', 'targetLabel': '//src/...'},
options: {
bazelCommand: 'test',
targetLabel: '//src:test',
},
},
indent);
}
Expand Down

0 comments on commit 8bc4da8

Please sign in to comment.