(cont, attr, val)
| 290 | var gd, modeBar; |
| 291 | |
| 292 | function assertScenes(cont, attr, val) { |
| 293 | var sceneIds = cont._subplots.gl3d; |
| 294 | |
| 295 | sceneIds.forEach(function(sceneId) { |
| 296 | var thisVal = Lib.nestedProperty(cont[sceneId], attr).get(); |
| 297 | expect(thisVal).toEqual(val); |
| 298 | }); |
| 299 | } |
| 300 | |
| 301 | function assertCameraEye(sceneLayout, eyeX, eyeY, eyeZ) { |
| 302 | expect(sceneLayout.camera.eye.x).toEqual(eyeX); |
no outgoing calls
no test coverage detected
searching dependent graphs…