fixed type
This commit is contained in:
parent
0fd6051f52
commit
4e4c720cb0
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ var sauceTestWorker = async.queue(function (testSettings, callback) {
|
||||||
.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){
|
||||||
var newLine = "[" + testSettings.browserName + (testSettings.version === "" ? '' : (" " + testSettings.version)) + "] ";
|
var newLine = "[" + testSettings.browserName + (testSettings.version === "" ? '' : (" " + testSettings.version)) + "] ";
|
||||||
}.join("\n"));
|
}).join("\n"));
|
||||||
|
|
||||||
console.log(testResult);
|
console.log(testResult);
|
||||||
console.log("Remote sauce test '" + name + "' finished!");
|
console.log("Remote sauce test '" + name + "' finished!");
|
||||||
|
|
Loading…
Reference in a new issue