You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to the documentation, we can set the 'requireSameDimensions' property to 'false' if we do not want to trigger a failed test when the dimensions are not equal. However, after debugging, I discovered that the 'requireSameDimensions' property will never receive a value of 'false' because it is being ignored in this condition.
it will always fall into the next property and if these are also a falsy value, will always default to true. Which makes this function not working fine.
According to the documentation, we can set the 'requireSameDimensions' property to 'false' if we do not want to trigger a failed test when the dimensions are not equal. However, after debugging, I discovered that the 'requireSameDimensions' property will never receive a value of 'false' because it is being ignored in this condition.
BackstopJS/core/util/engineTools.js
Line 46 in a0a9507
it will always fall into the next property and if these are also a falsy value, will always default to true. Which makes this function not working fine.
I think it should be:
The text was updated successfully, but these errors were encountered: