derby-webdriverio
Advanced tools
Comparing version 0.0.14 to 0.0.15
@@ -14,6 +14,4 @@ // Generated by CoffeeScript 1.10.0 | ||
}).then(function() { | ||
return new Bluebird(function(resolve, reject) { | ||
console.log('Kill Server'); | ||
return global.__runningServer.kill(); | ||
}); | ||
console.log('Kill Server'); | ||
return global.__runningServer.kill(); | ||
}).then(function() { | ||
@@ -20,0 +18,0 @@ return typeof customAfter === "function" ? customAfter(failures, pid) : void 0; |
@@ -85,2 +85,11 @@ // Generated by CoffeeScript 1.10.0 | ||
global.__runningServer = exec(envStr + " " + webdriverConf.server.startCommand); | ||
global.__runningServer.stdout.on('data', function(data) { | ||
return console.log(data); | ||
}); | ||
global.__runningServer.stderr.on('data', function(data) { | ||
return console.log(data); | ||
}); | ||
global.__runningServer.on('exit', function(code) { | ||
return 'Server exited with code ' + code; | ||
}); | ||
return void 0; | ||
@@ -87,0 +96,0 @@ }).then(function() { |
{ | ||
"name": "derby-webdriverio", | ||
"version": "0.0.14", | ||
"version": "0.0.15", | ||
"description": "Webdriver.io for Derby.js", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
31235
451