We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug drag test helper can produce a division by 0, which causes an error for triggerEvent because the value is Infinity
triggerEvent
Infinity
To Reproduce Reproduction unsure, but only seems to happen in headless test mode.
Expected behavior Avoid the division by 0
Additional context The offending line
const scale = clientHeight / (rect.bottom - rect.top);
https://github.com/adopted-ember-addons/ember-sortable/blob/master/addon/src/test-support/helpers/drag.js#L61
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
drag test helper can produce a division by 0, which causes an error for
triggerEvent
because the value isInfinity
To Reproduce
Reproduction unsure, but only seems to happen in headless test mode.
Expected behavior
Avoid the division by 0
Additional context
The offending line
https://github.com/adopted-ember-addons/ember-sortable/blob/master/addon/src/test-support/helpers/drag.js#L61
The text was updated successfully, but these errors were encountered: