(layoutIn, fullData)
| 17 | var layoutOut; |
| 18 | |
| 19 | function _supply(layoutIn, fullData) { |
| 20 | fullData = fullData || [{ |
| 21 | type: 'scattersmith', |
| 22 | real: [], |
| 23 | imag: [], |
| 24 | subplot: 'smith' |
| 25 | }]; |
| 26 | |
| 27 | layoutOut = { |
| 28 | noUirevision: true, |
| 29 | font: {color: 'red'}, |
| 30 | _subplots: {smith: ['smith']} |
| 31 | }; |
| 32 | |
| 33 | Smith.supplyLayoutDefaults(layoutIn, layoutOut, fullData); |
| 34 | } |
| 35 | |
| 36 | it('should contain correct default top level values', function() { |
| 37 | _supply({ |
no outgoing calls
no test coverage detected
searching dependent graphs…