| Index: third_party/pkg/angular/run-test.sh
|
| diff --git a/third_party/pkg/angular/run-test.sh b/third_party/pkg/angular/run-test.sh
|
| index 513ca5abbe7fceb1c87956c17c81b524ac570c49..d8c4370db7e5ceb0ed437e15606ab88c659b2b96 100755
|
| --- a/third_party/pkg/angular/run-test.sh
|
| +++ b/third_party/pkg/angular/run-test.sh
|
| @@ -1,5 +1,7 @@
|
| #!/bin/sh
|
|
|
| +set -e
|
| +
|
| # OS-specific Dartium path defaults
|
| case $( uname -s ) in
|
| Darwin)
|
| @@ -30,7 +32,10 @@ dart --version
|
| # run io tests
|
| dart --checked test/io/all.dart
|
|
|
| -./analyze.sh &&
|
| +# run expression extractor tests
|
| +scripts/test-expression-extractor.sh
|
| +
|
| +./scripts/analyze.sh &&
|
| node_modules/jasmine-node/bin/jasmine-node playback_middleware/spec/ &&
|
| node "node_modules/karma/bin/karma" start karma.conf \
|
| --reporters=junit,dots --port=8765 --runner-port=8766 \
|
|
|