(ptCnt, txCnt)
| 700 | |
| 701 | it('should remove all point and text nodes on blank data', function(done) { |
| 702 | function assertNodeCnt(ptCnt, txCnt) { |
| 703 | expect(d3SelectAll('.point').size()).toEqual(ptCnt); |
| 704 | expect(d3SelectAll('.textpoint').size()).toEqual(txCnt); |
| 705 | } |
| 706 | |
| 707 | function assertText(content) { |
| 708 | d3SelectAll('.textpoint').each(function(_, i) { |
no outgoing calls
no test coverage detected
searching dependent graphs…