Remove annoying spaces in karma-teamcity-reporter

This commit is contained in:
Ilya Goncharov
2019-09-20 19:02:11 +03:00
parent b4e3cf1d7a
commit 7d4b43f819
@@ -155,7 +155,16 @@ class KotlinKarma(override val compilation: KotlinJsCompilation) : KotlinJsTestF
log.push(endMessage);
this.browserResults[browser.id].consoleCollector = []
}
};
this.flushLogs = function (browserResult) {
while (browserResult.log.length > 0) {
var line = browserResult.log.shift();
line = line.replace("flowId=''", "flowId='" + browserResult.flowId + "'");
this.write(line);
}
}
};
LogReporter.${"$"}inject = ['baseReporterDecorator'];