From e2b46cf7b2ffaab986323bca7bb474947658c01f Mon Sep 17 00:00:00 2001 From: Zoltan Kochan Date: Tue, 30 Jan 2018 01:21:11 +0200 Subject: [PATCH] fix(reporting): revert throttle --- src/reporter/index.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/reporter/index.ts b/src/reporter/index.ts index 6fde527c97..16926f0148 100644 --- a/src/reporter/index.ts +++ b/src/reporter/index.ts @@ -8,14 +8,16 @@ export default (reporterType: ReporterType, cmd: string) => { switch (reporterType) { case 'default': defaultReporter(streamParser, { - cmd, appendOnly: false, + cmd, + throttleProgress: 0, }) return case 'append-only': defaultReporter(streamParser, { - cmd, appendOnly: true, + cmd, + throttleProgress: 0, }) return case 'ndjson':