Skip to content

Commit c435f1c

Browse files
committed
bug fixes
1 parent 5ac3f6d commit c435f1c

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,7 @@
4040
## [0.0.8] - 2017-07-07
4141
### Changed
4242
- Fixed bug
43+
44+
## [0.0.9] - 2017-07-07
45+
### Changed
46+
- Fixed bug

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "differencify",
3-
"version": "0.0.8",
3+
"version": "0.0.9",
44
"description": "Perceptual diffing tool",
55
"main": "dist/index.js",
66
"scripts": {

src/compareImage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const compareImage = (options, testName) =>
1515
}
1616
if (options.saveDifferencifiedImage) {
1717
logger.log('Writting the diff image to disk');
18-
diff.image.write(`${options.testPath}/${testName}_differencified.png`);
18+
diff.image.write(`${options.testReportPath}/${testName}_differencified.png`);
1919
}
2020
logger.error(`Result -> distance:${distance} diff:${diff.percent}
2121
misMatchThreshold:${options.mismatchThreshold}`);

0 commit comments

Comments
 (0)