(label, expectation, msg)
| 81 | } |
| 82 | |
| 83 | function assertLabelContent(label, expectation, msg) { |
| 84 | if(!expectation) expectation = ''; |
| 85 | |
| 86 | var content = getLabelContent(label); |
| 87 | |
| 88 | expect(content).toBe(expectation, msg + ': text content'); |
| 89 | } |
| 90 | |
| 91 | function count(selector) { |
| 92 | return d3SelectAll(selector).size(); |
no test coverage detected
searching dependent graphs…