Skip to content

Commit 719ae3a

Browse files
committed
slightly increase delay
1 parent 398983d commit 719ae3a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/jasmine/tests/gl3d_hover_click_test.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -554,9 +554,9 @@ describe('Test gl3d trace click/hover:', function() {
554554
var fig = mesh3dcoloringMock;
555555

556556
Plotly.newPlot(gd, fig)
557-
.then(delay(20))
557+
.then(delay(40))
558558
.then(function() { mouseEvent('mouseover', 200, 200); })
559-
.then(delay(20))
559+
.then(delay(40))
560560
.then(function() {
561561
assertHoverText(
562562
'x: 0.6666667',
@@ -567,7 +567,7 @@ describe('Test gl3d trace click/hover:', function() {
567567
);
568568
})
569569
.then(function() { mouseEvent('mouseover', 300, 200); })
570-
.then(delay(20))
570+
.then(delay(40))
571571
.then(function() {
572572
assertHoverText(
573573
'x: 1',
@@ -578,7 +578,7 @@ describe('Test gl3d trace click/hover:', function() {
578578
);
579579
})
580580
.then(function() { mouseEvent('mouseover', 300, 300); })
581-
.then(delay(20))
581+
.then(delay(40))
582582
.then(function() {
583583
assertHoverText(
584584
'x: 1',
@@ -589,7 +589,7 @@ describe('Test gl3d trace click/hover:', function() {
589589
);
590590
})
591591
.then(function() { mouseEvent('mouseover', 200, 300); })
592-
.then(delay(20))
592+
.then(delay(40))
593593
.then(function() {
594594
assertHoverText(
595595
'x: 0.6666667',

0 commit comments

Comments
 (0)