(query)
| 601 | var sp = d3Select(gd).select('g.polar'); |
| 602 | |
| 603 | function assertLetterCount(query) { |
| 604 | var d = sp.select(query).attr('d'); |
| 605 | var re = new RegExp(exp.letter, 'g'); |
| 606 | var actual = (d.match(re) || []).length; |
| 607 | expect(actual).toBe(exp.cnt, msg + ' - ' + query); |
| 608 | } |
| 609 | |
| 610 | assertLetterCount('.plotbg > path'); |
| 611 | assertLetterCount('.radial-grid > path'); |
no outgoing calls
no test coverage detected
searching dependent graphs…