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
I think trouble comes from to cypress/e2e/drag-support.js, maybe cause position data of components is incremented by the event.dx and event.dy (dx and dy are equal to the new mouse position minus the last saved mouse position) of interactjs. Before that we saved at each event, in the position data, just the mouse position minus the delta between the mouse and the component origin. So there was no need for intermediate data.
The text was updated successfully, but these errors were encountered:
Describe the bug
Move testing doesn't work with the new drag system developed with interactjs
To Reproduce
Steps to reproduce the behavior:
cypress/e2e/move.feature
npm run demo
npx cypress open
Additional Context
I think trouble comes from to
cypress/e2e/drag-support.js
, maybe cause position data of components is incremented by theevent.dx
andevent.dy
(dx and dy are equal to the new mouse position minus the last saved mouse position) of interactjs. Before that we saved at each event, in the position data, just the mouse position minus the delta between the mouse and the component origin. So there was no need for intermediate data.The text was updated successfully, but these errors were encountered: