testarmada-magellan-nightwatch
Advanced tools
Comparing version 3.0.0 to 3.0.1
@@ -18,6 +18,5 @@ // Some utility functions that help with integrating Magellan with SauceLabs | ||
isSauceTest: function (client) { | ||
// check for the presence of a sauce labs tunnel | ||
return client.options && | ||
client.options.desiredCapabilities && | ||
client.options.desiredCapabilities["tunnel-identifier"] | ||
// check for the presence of a sauce labs username / access key | ||
var opt = client.options; | ||
return opt && opt.desiredCapabilities && (opt.accessKey || opt.username); | ||
}, | ||
@@ -24,0 +23,0 @@ |
{ | ||
"name": "testarmada-magellan-nightwatch", | ||
"version": "3.0.0", | ||
"version": "3.0.1", | ||
"description": "Nightwatch.js adapter for Magellan", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
177927
1805