We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f7293d commit 3042c13Copy full SHA for 3042c13
test/jasmine/tests/plot_api_test.js
@@ -711,8 +711,12 @@ describe('Test plot api', function() {
711
}
712
}];
713
714
+ spyOn(Plots.subplotsRegistry.gl3d, 'plot');
715
+
716
Plotly.plot(gd, data);
717
718
+ expect(Plots.subplotsRegistry.gl3d.plot).toHaveBeenCalled();
719
720
var contours = gd.data[0].contours;
721
722
expect(contours.x.highlightColor).toBeUndefined();
@@ -736,8 +740,12 @@ describe('Test plot api', function() {
736
740
type: 'surface'
737
741
738
742
743
744
739
745
746
747
748
749
750
751
expect(contours.x).toBeUndefined();
0 commit comments