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

PR Close #19600
This commit is contained in:
George Kalpakas
2017-10-07 00:25:27 +03:00
committed by Chuck Jazdzewski
parent 1d5c3c1c9b
commit 173ccf03ab
4 changed files with 58 additions and 38 deletions

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