Thanks to visit codestin.com Credit goes to github.com
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.
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