We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16a01e7 commit 09f1af5Copy full SHA for 09f1af5
test/jasmine/tests/config_test.js
@@ -776,6 +776,7 @@ describe('config argument', function() {
776
plot(undefined).then(function() {
777
expect(gd._context.scrollZoom).toBe('gl3d+geo+mapbox');
778
expect(gd._context._scrollZoom).toEqual({gl3d: 1, geo: 1, mapbox: 1});
779
+ expect(gd._context._scrollZoom.cartesian).toBe(undefined, 'no cartesian!');
780
})
781
.catch(failTest)
782
.then(done);
@@ -785,6 +786,7 @@ describe('config argument', function() {
785
786
plot({scrollZoom: null}).then(function() {
787
expect(gd._context.scrollZoom).toBe(null);
788
789
790
791
792
0 commit comments