(opts, layout)
| 39 | var gd; |
| 40 | |
| 41 | function _supply(opts, layout) { |
| 42 | gd = {}; |
| 43 | opts = Array.isArray(opts) ? opts : [opts]; |
| 44 | |
| 45 | gd.data = opts.map(function(o) { |
| 46 | return Lib.extendFlat({type: 'splom'}, o || {}); |
| 47 | }); |
| 48 | gd.layout = layout || {}; |
| 49 | |
| 50 | supplyAllDefaults(gd); |
| 51 | } |
| 52 | |
| 53 | it('should set `visible: false` dimensions-less traces', function() { |
| 54 | _supply([{}, {dimensions: []}]); |
no outgoing calls
no test coverage detected
searching dependent graphs…