Skip to content

Commit

Permalink
Merge pull request #33 from puneet0191/master
Browse files Browse the repository at this point in the history
Preparing for Release
  • Loading branch information
puneet0191 authored Jul 25, 2019
2 parents ca32b30 + 1961bc6 commit c043b88
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const assert = require('assert');
const mkdirp = require('mkdirp');
const getDirName = require('path').dirname;
const AWS = require('aws-sdk');
const path = require('path');

/**
* Resemble.js helper class for CodeceptJS, this allows screen comparison
Expand Down Expand Up @@ -50,7 +51,8 @@ class ResembleHelper extends Helper {
throw new Error(this.err);
}
else {
this.debug(this.config.diffFolder + diffImage + '.png');
const diffImagePath = path.join(process.cwd(), this.config.diffFolder + diffImage + '.png');
this.debug("Diff Image File Saved to: " + diffImagePath);
}
});
}
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "codeceptjs-resemblehelper",
"version": "1.5.0",
"description": "Resemble Js helper for CodeceptJS, with WebdriverIO",
"version": "1.6.0",
"description": "Resemble Js helper for CodeceptJS, with Support for Webdriver, Puppeteer & Appium",
"repository": {
"type": "git",
"url": "[email protected]:Percona-Lab/codeceptjs-resemblehelper.git"
Expand Down

0 comments on commit c043b88

Please sign in to comment.