-
Notifications
You must be signed in to change notification settings - Fork 56
Open
Description
when I run follow code
const looksSame = require('looks-same');
function diff (){
looksSame.createDiff({
reference: './reference.png',
current:'./current.png',
diff: './diff.png',
highlightColor: '#ff00ff', // color to highlight the differences
strict: false, // strict comparsion
tolerance: 2.5,
antialiasingTolerance: 0,
ignoreAntialiasing: true, // ignore antialising by default
ignoreCaret: true // ignore caret by default
}, (error, {equal}) => {
console.log("func block");
console.log(error.name, error.message);
});}
diff();
get an error:
TypeError: Cannot destructure property first of 'undefined' or 'null'.
Could u guys describe me what's going on? Is there issue in my code?
Thank you :)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
