(expFontSizes)
| 239 | } |
| 240 | |
| 241 | function _checkFontSizes(expFontSizes) { |
| 242 | return function() { |
| 243 | d3SelectAll(SLICES_TEXT_SELECTOR).each(function(d, i) { |
| 244 | expect(this.style.fontSize).toBe(expFontSizes[i] + 'px', 'fontSize of ' + i); |
| 245 | }); |
| 246 | }; |
| 247 | } |
| 248 | |
| 249 | it('propagate explicit colors to the same labels in earlier OR later traces', function(done) { |
| 250 | var data1 = [ |
no outgoing calls
no test coverage detected
searching dependent graphs…