()
| 63 | |
| 64 | it('does not trigger `drag:start` event when clicking on non draggable element', () => { |
| 65 | function dragFlow() { |
| 66 | clickMouse(document.body); |
| 67 | waitForDragDelay(); |
| 68 | clickMouse(nonDraggableElement); |
| 69 | waitForDragDelay(); |
| 70 | } |
| 71 | |
| 72 | expect(dragFlow).not.toHaveTriggeredSensorEvent('drag:start'); |
| 73 | }); |
nothing calls this directly
no test coverage detected
searching dependent graphs…