(xType, yType, msg)
| 212 | } |
| 213 | |
| 214 | function checkTypes(xType, yType, msg) { |
| 215 | expect(layoutOut.xaxis.type).toBe(xType, msg); |
| 216 | expect(layoutOut.yaxis.type).toBe(yType, msg); |
| 217 | } |
| 218 | |
| 219 | it('treats booleans as categories', function() { |
| 220 | supplyWithTrace({x: [0, 1, 2], y: [true, false, true]}); |
no outgoing calls
no test coverage detected
searching dependent graphs…