test(aio): fix testing of NgPackagesInstaller (#19655)

PR Close #19655
This commit is contained in:
George Kalpakas
2017-10-07 00:25:27 +03:00
committed by Tobias Bosch
parent 97969a85cd
commit 62c7b7842b
4 changed files with 56 additions and 38 deletions
+3 -3
View File
@@ -41,12 +41,12 @@ if [[ ${CI_MODE:-} == "aio" ]]; then
fi
# Build the Angular packages then exit (no further build required)
if [[ ${CI_MODE:-} == "aio_e2e" ]]; then
travisFoldStart "build.aio_e2e"
if [[ ${CI_MODE:-} == "aio_e2e" || ${CI_MODE:-} == "aio_tools_test" ]]; then
travisFoldStart "build.$CI_MODE"
(
./build.sh
)
travisFoldEnd "build.aio_e2e"
travisFoldEnd "build.$CI_MODE"
exit 0;
fi