We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
click_test.js
1 parent 03cad13 commit 90700daCopy full SHA for 90700da
test/jasmine/tests/click_test.js
@@ -180,7 +180,13 @@ describe('Test click interactions:', function() {
180
181
describe('drag interactions', function() {
182
beforeEach(function(done) {
183
- Plotly.plot(gd, mockCopy.data, mockCopy.layout).then(done);
+ Plotly.plot(gd, mockCopy.data, mockCopy.layout).then(function() {
184
+ // Do not let the notifier hide the drag elements
185
+ var tooltip = document.querySelector('.notifier-note');
186
+ if(tooltip) tooltip.style.display = 'None';
187
+
188
+ done();
189
+ });
190
});
191
192
it('on nw dragbox should update the axis ranges', function(done) {
0 commit comments