(expFontFamilies)
| 231 | } |
| 232 | |
| 233 | function _checkFontFamilies(expFontFamilies) { |
| 234 | return function() { |
| 235 | d3SelectAll(SLICES_TEXT_SELECTOR).each(function(d, i) { |
| 236 | expect(this.style.fontFamily).toBe(expFontFamilies[i], 'fontFamily of ' + i); |
| 237 | }); |
| 238 | }; |
| 239 | } |
| 240 | |
| 241 | function _checkFontSizes(expFontSizes) { |
| 242 | return function() { |
no outgoing calls
no test coverage detected
searching dependent graphs…