(msg, exp)
| 194 | gd = createGraphDiv(); |
| 195 | |
| 196 | function _assertGlTextOpts(msg, exp) { |
| 197 | var scene = gd.calcdata[0][0].t._scene; |
| 198 | scene.glText.forEach(function(opts, i) { |
| 199 | expect(Array.from(opts.color)) |
| 200 | .toBeCloseToArray(exp.rgba[i], 2, 'item ' + i + ' - ' + msg); |
| 201 | }); |
| 202 | } |
| 203 | |
| 204 | _newPlot(gd, fig) |
| 205 | .then(delay(20)) |
no outgoing calls
no test coverage detected
searching dependent graphs…