webdriverio
Advanced tools
Comparing version 3.0.2 to 3.0.3
# CHANGELOG | ||
## v3.0.3 (2015-07-06) | ||
* show also title of pending test (refs #606) | ||
## v3.0.2 (2015-07-06) | ||
@@ -4,0 +7,0 @@ * if specFn is undefined we are dealing with a pending function (fixes #606) |
@@ -28,3 +28,3 @@ var buster = require('buster'), | ||
assert(err === undefined); | ||
assert(result.value === 'rgba(65,131,196,1)'); | ||
assert(result.value === 'rgba(64,120,192,1)'); | ||
}) | ||
@@ -31,0 +31,0 @@ .call(done); |
@@ -44,3 +44,3 @@ /** | ||
expect(err).toBeFalsy(); | ||
expect(color).toBe('rgba(65,131,196,1)'); | ||
expect(color).toBe('rgba(64,120,192,1)'); | ||
}) | ||
@@ -47,0 +47,0 @@ .call(done); |
@@ -29,3 +29,3 @@ var chai = require('chai'), | ||
assert.equal(undefined, err); | ||
assert.strictEqual(result.value, 'rgba(65,131,196,1)'); | ||
assert.strictEqual(result.value, 'rgba(64,120,192,1)'); | ||
}) | ||
@@ -32,0 +32,0 @@ .call(done); |
@@ -28,3 +28,3 @@ var webdriverio = require('../index'), | ||
assert(err === undefined); | ||
assert(result.value === 'rgba(65,131,196,1)'); | ||
assert(result.value === 'rgba(64,120,192,1)'); | ||
}) | ||
@@ -31,0 +31,0 @@ .call(done); |
@@ -26,3 +26,3 @@ var webdriverio = require('../index'), | ||
test.ok(err === undefined, 'getElementCssProperty() should cause no error'); | ||
test.ok(result.value === 'rgba(65,131,196,1)', 'color is "' + result + '" but should be "rgba(65,131,196,1)"'); | ||
test.ok(result.value === 'rgba(64,120,192,1)', 'color is "' + result + '" but should be "rgba(64,120,192,1)"'); | ||
}); | ||
@@ -29,0 +29,0 @@ |
@@ -69,4 +69,4 @@ var vows = require('vows'), | ||
'color should be rgba(65,131,196,1)': function(err,result) { | ||
assert(result.value === 'rgba(65,131,196,1)'); | ||
'color should be rgba(64,120,192,1)': function(err,result) { | ||
assert(result.value === 'rgba(64,120,192,1)'); | ||
} | ||
@@ -73,0 +73,0 @@ |
@@ -113,4 +113,4 @@ var q = require('q'), | ||
*/ | ||
if(typeof specFn !== 'function') { | ||
return origFn.call(null, specTitle); | ||
if(fnName === 'it' && arguments.length === 1) { | ||
return origFn.call(null, arguments[0]); | ||
} | ||
@@ -117,0 +117,0 @@ |
{ | ||
"name": "webdriverio", | ||
"description": "A nodejs bindings implementation for selenium 2.0/webdriver", | ||
"version": "3.0.2", | ||
"version": "3.0.3", | ||
"homepage": "http://webdriver.io", | ||
@@ -6,0 +6,0 @@ "author": "Camilo Tapia <camilo.tapia@gmail.com>", |
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
1200671