Skip to content

Commit

Permalink
Merge pull request codeceptjs#123 from pgoellnitz/1.9.7
Browse files Browse the repository at this point in the history
correct image sequence on comparison
  • Loading branch information
sharath2106 authored Mar 11, 2023
2 parents 26419e4 + 5e1830e commit 0085e25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ class ResembleHelper extends Helper {
this.debug("Tolerance Level Provided " + options.tolerance);
const tolerance = options.tolerance;

resemble.compare(baseImage, actualImage, options, (err, data) => {
resemble.compare(actualImage, baseImage, options, (err, data) => {
if (err) {
reject(err);
} else {
Expand Down

0 comments on commit 0085e25

Please sign in to comment.