(selector, expected)
| 3376 | afterEach(destroyGraphDiv); |
| 3377 | |
| 3378 | function assertPtOpacity(selector, expected) { |
| 3379 | d3SelectAll(selector).each(function(_, i) { |
| 3380 | var style = Number(this.style.opacity); |
| 3381 | expect(style).toBe(expected.style[i], 'style for pt ' + i); |
| 3382 | }); |
| 3383 | } |
| 3384 | |
| 3385 | it('should persist for scatter', function(done) { |
| 3386 | function _assert(expected) { |
no outgoing calls
no test coverage detected
searching dependent graphs…