We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06859e3 commit 529ef76Copy full SHA for 529ef76
index.js
@@ -132,7 +132,10 @@ class ResembleHelper extends Helper {
132
133
options.boundingBox = await this._getBoundingBox(selector);
134
var misMatch = await this._fetchMisMatchPercentage(baseImage, options);
135
- console.log("MisMatch Percentage Calculated is " + misMatch);
+ if(this.config.consoleOutput)
136
+ {
137
+ console.log("MisMatch Percentage Calculated is " + misMatch);
138
+ }
139
assert(misMatch <= options.tolerance, "MissMatch Percentage " + misMatch);
140
}
141
else {
0 commit comments