mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-28 03:16:16 -04:00
add platform in console output
This commit is contained in:
parent
d407a890b3
commit
8832b074e4
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ var sauceTestWorker = async.queue(function (testSettings, callback) {
|
||||||
var testResult = knownConsoleText.replace(/\[red\]/g,'\x1B[31m').replace(/\[yellow\]/g,'\x1B[33m')
|
var testResult = knownConsoleText.replace(/\[red\]/g,'\x1B[31m').replace(/\[yellow\]/g,'\x1B[33m')
|
||||||
.replace(/\[green\]/g,'\x1B[32m').replace(/\[clear\]/g, '\x1B[39m');
|
.replace(/\[green\]/g,'\x1B[32m').replace(/\[clear\]/g, '\x1B[39m');
|
||||||
testResult = testResult.split("\\n").map(function(line){
|
testResult = testResult.split("\\n").map(function(line){
|
||||||
return "[" + testSettings.browserName + (testSettings.version === "" ? '' : (" " + testSettings.version)) + "] " + line;
|
return "[" + testSettings.browserName + " " + testSettings.platform + (testSettings.version === "" ? '' : (" " + testSettings.version)) + "] " + line;
|
||||||
}).join("\n");
|
}).join("\n");
|
||||||
|
|
||||||
console.log(testResult);
|
console.log(testResult);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue