Comparing version 1.0.6 to 1.0.7
Changelog | ||
========= | ||
v1.0.7 - Merged PR #5 to resolve issue on SauceLabs (18/12/2015) | ||
v1.0.6 - Rename custom matchers to avoid naming conflict with Jasmine toMatch (04/11/2015) | ||
@@ -4,0 +6,0 @@ |
@@ -113,3 +113,3 @@ var BlinkDiff = require('blink-diff'), | ||
.then(function(point) { | ||
rect = {height: size.height, width: size.width, x: point.x, y: point.y}; | ||
rect = {height: size.height, width: size.width, x: Math.floor(point.x), y: Math.floor(point.y)}; | ||
return browser.takeScreenshot(); | ||
@@ -186,3 +186,3 @@ }) | ||
.then(function(point) { | ||
rect = {height: size.height, width: size.width, x: point.x, y: point.y}; | ||
rect = {height: size.height, width: size.width, x: Math.floor(point.x), y: Math.floor(point.y)}; | ||
return browser.takeScreenshot(); | ||
@@ -189,0 +189,0 @@ }) |
{ | ||
"name": "pix-diff", | ||
"version": "1.0.6", | ||
"version": "1.0.7", | ||
"description": "Protractor plugin for image comparison", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -146,2 +146,2 @@ Pix-Diff | ||
Copyright 2015 Koola. | ||
Copyright 2016 Koola. |
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
19651