(expectedCenters)
| 1291 | |
| 1292 | it('autobins all histograms (on the same subplot) together except `visible: false`', function(done) { |
| 1293 | function _assertBinCenters(expectedCenters) { |
| 1294 | var centers = gd.calcdata.map(function(cd) { |
| 1295 | return cd.map(function(cdi) { return cdi.p; }); |
| 1296 | }); |
| 1297 | |
| 1298 | expect(centers).toBeCloseTo2DArray(expectedCenters); |
| 1299 | } |
| 1300 | |
| 1301 | var hidden = [undefined]; |
| 1302 |
no outgoing calls
no test coverage detected
searching dependent graphs…