test: disable ng test watch mode in e2e

This commit is contained in:
Charles Lyding 2018-05-10 22:13:22 -04:00 committed by Filipe Silva
parent 4f350cbfe0
commit c8fc0c6c8d
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ export default function () {
.then(() => expectToFail(() => ng('build')))
.then(() => ng('update', '@angular/cli'))
.then(() => ng('generate', 'component', 'my-comp'))
.then(() => ng('test'))
.then(() => ng('test', '--watch=false'))
.then(() => ng('lint'))
.then(() => ng('build', '--prod'))
.then(() => ng('e2e'));

View File

@ -11,7 +11,7 @@ export default function () {
.then(() => expectToFail(() => ng('build')))
.then(() => ng('update', '@angular/cli'))
.then(() => ng('generate', 'component', 'my-comp'))
.then(() => ng('test'))
.then(() => ng('test', '--watch=false'))
.then(() => ng('lint'))
.then(() => ng('build', '--prod'))
.then(() => ng('e2e'));