(expFontFamilies)
| 255 | } |
| 256 | |
| 257 | function _checkFontFamilies(expFontFamilies) { |
| 258 | return function() { |
| 259 | d3SelectAll(SLICES_TEXT_SELECTOR).each(function(d, i) { |
| 260 | expect(this.style.fontFamily).toBe(expFontFamilies[i], 'fontFamily of ' + i); |
| 261 | }); |
| 262 | }; |
| 263 | } |
| 264 | |
| 265 | function _checkFontSizes(expFontSizes) { |
| 266 | return function() { |
no outgoing calls
no test coverage detected
searching dependent graphs…