Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add --no-progress to ng helper
  • Loading branch information
filipesilva committed Nov 26, 2016
commit f89bbf4f96e66f235fc8a7fa3f772cef4e682371
2 changes: 1 addition & 1 deletion tests/e2e/utils/process.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export function silentExecAndWaitForOutputToMatch(cmd: string, args: string[], m

export function ng(...args: string[]) {
if (args[0] == 'build' || args[0] == 'serve' || args[0] == 'test') {
return silentNg(...args);
return silentNg(...args, '--no-progress');
} else {
return _exec({}, 'ng', args);
}
Expand Down