protractor-image-comparison
Advanced tools
Comparing version 1.5.0 to 1.5.1
@@ -0,1 +1,8 @@ | ||
<a name="1.5.1"></a> | ||
# [1.5.1](https://github.com/wswebcreation/protractor-image-comparison/compare/v1.5.0...v1.5.1) (2018-01-13) | ||
### Bugfix | ||
* Fix options parsing in `_executeImageComparison`, see [43](https://github.com/wswebcreation/protractor-image-comparison/pull/43), tnx to [Juravenator](https://github.com/Juravenator) | ||
<a name="1.5.0"></a> | ||
@@ -2,0 +9,0 @@ # [1.5.0](https://github.com/wswebcreation/protractor-image-comparison/compare/v1.4.0...v1.5.0) (2017-12-17) |
@@ -354,3 +354,3 @@ 'use strict'; | ||
compareOptions.ignoreColors = 'ignoreColors' in compareOptions ? compareOptions.ignoreColors : this.ignoreColors; | ||
compareOptions.ignoreRectangles = 'ignoreRectangles' in compareOptions ? compareOptions.ignoreRectangles.push(ignoreRectangles) : ignoreRectangles; | ||
compareOptions.ignoreRectangles = 'ignoreRectangles' in compareOptions ? compareOptions.ignoreRectangles.concat(ignoreRectangles) : ignoreRectangles; | ||
compareOptions.ignoreTransparentPixel = 'ignoreTransparentPixel' in compareOptions ? compareOptions.ignoreTransparentPixel : this.ignoreTransparentPixel; | ||
@@ -1124,2 +1124,2 @@ | ||
module.exports = protractorImageComparison; | ||
module.exports = protractorImageComparison; |
{ | ||
"name": "protractor-image-comparison", | ||
"version": "1.5.0", | ||
"version": "1.5.1", | ||
"description": "npm-module to compare images with protractor", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
799611
1361