Skip to content

Commit ab08e7a

Browse files
committed
fix(@angular/cli): fix broken minimal e2e test
1 parent d22e9ae commit ab08e7a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/e2e/tests/misc/minimal-config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export default function () {
1515
}],
1616
e2e: { protractor: { config: './protractor.conf.js' } }
1717
})))
18-
.then(() => ng('e2e'))
18+
.then(() => ng('e2e', '--no-progress'))
1919
.then(() => writeMultipleFiles({
2020
'./src/script.js': `
2121
document.querySelector('app-root').innerHTML = '<h1>app works!</h1>';
@@ -40,5 +40,5 @@ export default function () {
4040
e2e: { protractor: { config: './protractor.conf.js' } }
4141
}),
4242
}))
43-
.then(() => ng('e2e'));
43+
.then(() => ng('e2e', '--no-progress'));
4444
}

0 commit comments

Comments
 (0)