(expFontSizes)
| 263 | } |
| 264 | |
| 265 | function _checkFontSizes(expFontSizes) { |
| 266 | return function() { |
| 267 | d3SelectAll(SLICES_TEXT_SELECTOR).each(function(d, i) { |
| 268 | expect(this.style.fontSize).toBe(expFontSizes[i] + 'px', 'fontSize of ' + i); |
| 269 | }); |
| 270 | }; |
| 271 | } |
| 272 | |
| 273 | it('propagate explicit colors to the same labels in earlier OR later traces', function(done) { |
| 274 | var data1 = [ |
no outgoing calls
no test coverage detected
searching dependent graphs…