()
| 155 | } |
| 156 | |
| 157 | function totalPixels() { |
| 158 | return readPixel(gd.querySelector('.gl-canvas-context'), 0, 0, 400, 400) |
| 159 | .reduce(function(acc, v) { return acc + v; }, 0); |
| 160 | } |
| 161 | |
| 162 | function assertEventData(actual, expected) { |
| 163 | expect(actual.points.length).toBe(expected.points.length); |
no test coverage detected
searching dependent graphs…