-
Notifications
You must be signed in to change notification settings - Fork 54
The tests passes even when it is over threshold. #71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
@vazsonyidl could u please send fix, thanks for reporting, I will merge and make a new release. |
@vazsonyidl @puneet0191 I am also running into this, there is also no mismatch percentage shown even though there is a new image generated in |
@eunicekokor i will fix it tomorrow |
Thanks a lot for helping 😊 |
I do not have permission to contribute for this project. I am unable to push for a new branch created by me, so the solution should be.
should be replaced with:
This fixes this issue. This will assert de misMatch and tolerance by default, as it should behave. So the test will not passes if the mismatch is over tolerance. Please fix this. 💯 Thanks in advance! |
Hi there,
As the previous code snippet shows, since the options.skipFailure is undefined, the comparison would always return false. Because of this, the
assert
would never run, and the pipeline passes even when the tolerance is clearly over the threshold.Please define false as default, because previously the
assert
run automatically, did not depend on the value of skipFailure.The text was updated successfully, but these errors were encountered: