(firstClickPoint: Plottable.Point,
secondClickPoint: Plottable.Point,
mode: TestMethods.InteractionMode)
| 81 | } |
| 82 | |
| 83 | function doubleClickPointWithMove(firstClickPoint: Plottable.Point, |
| 84 | secondClickPoint: Plottable.Point, |
| 85 | mode: TestMethods.InteractionMode) { |
| 86 | clickPoint(firstClickPoint, mode); |
| 87 | clickPoint(secondClickPoint, mode); |
| 88 | TestMethods.triggerFakeMouseEvent("dblclick", component.content(), secondClickPoint.x, secondClickPoint.y); |
| 89 | } |
| 90 | |
| 91 | // All the tests require setTimouts becuase of the internal logic in click interactions |
| 92 | function runAsserts(callback: () => void, done: () => void) { |
no test coverage detected