Remove annoying spaces in karma-teamcity-reporter
This commit is contained in:
+9
@@ -155,6 +155,15 @@ class KotlinKarma(override val compilation: KotlinJsCompilation) : KotlinJsTestF
|
|||||||
log.push(endMessage);
|
log.push(endMessage);
|
||||||
|
|
||||||
this.browserResults[browser.id].consoleCollector = []
|
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);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user