We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef53e31 commit 545ad47Copy full SHA for 545ad47
test/jasmine/tests/axes_test.js
@@ -2874,7 +2874,11 @@ describe('Test axes', function() {
2874
// x axis still has a zero line on xy2, and y on x2y
2875
// all the others have disappeared now
2876
assertZeroLines(['x', 'y']);
2877
- return Plotly.relayout(gd, {'xaxis.showline': true, 'xaxis.mirror': 'all'});
+ return Plotly.relayout(gd, {'xaxis.mirror': 'allticks', 'yaxis.mirror': 'allticks'});
2878
+ })
2879
+ .then(function() {
2880
+ // allticks works the same as all
2881
+ assertZeroLines(['x', 'y']);
2882
})
2883
.catch(failTest)
2884
.then(done);
0 commit comments