@@ -66,7 +66,7 @@ var mock4 = {
66
66
layout : { }
67
67
} ;
68
68
69
- describe ( '@gl @ flaky Test hover and click interactions' , function ( ) {
69
+ describe ( '@flaky Test hover and click interactions' , function ( ) {
70
70
var gd ;
71
71
72
72
function makeHoverFn ( gd , x , y ) {
@@ -185,7 +185,7 @@ describe('@gl @flaky Test hover and click interactions', function() {
185
185
destroyGraphDiv ( ) ;
186
186
} ) ;
187
187
188
- it ( 'should output correct event data for scattergl' , function ( done ) {
188
+ it ( '@gl should output correct event data for scattergl' , function ( done ) {
189
189
var _mock = Lib . extendDeep ( { } , mock1 ) ;
190
190
191
191
_mock . layout . hoverlabel = {
@@ -222,7 +222,7 @@ describe('@gl @flaky Test hover and click interactions', function() {
222
222
. then ( done ) ;
223
223
} ) ;
224
224
225
- it ( 'should output correct event data for scattergl in *select* dragmode' , function ( done ) {
225
+ it ( '@gl should output correct event data for scattergl in *select* dragmode' , function ( done ) {
226
226
var _mock = Lib . extendDeep ( { } , mock1 ) ;
227
227
228
228
_mock . layout . dragmode = 'select' ;
@@ -261,7 +261,7 @@ describe('@gl @flaky Test hover and click interactions', function() {
261
261
. then ( done ) ;
262
262
} ) ;
263
263
264
- it ( 'should output correct event data for scattergl in *lasso* dragmode' , function ( done ) {
264
+ it ( '@gl should output correct event data for scattergl in *lasso* dragmode' , function ( done ) {
265
265
var _mock = Lib . extendDeep ( { } , mock1 ) ;
266
266
267
267
_mock . layout . dragmode = 'lasso' ;
@@ -300,7 +300,7 @@ describe('@gl @flaky Test hover and click interactions', function() {
300
300
. then ( done ) ;
301
301
} ) ;
302
302
303
- it ( 'should output correct event data for scattergl with hoverinfo: \'none\'' , function ( done ) {
303
+ it ( '@gl should output correct event data for scattergl with hoverinfo: \'none\'' , function ( done ) {
304
304
var _mock = Lib . extendDeep ( { } , mock1 ) ;
305
305
_mock . data [ 0 ] . hoverinfo = 'none' ;
306
306
@@ -320,7 +320,7 @@ describe('@gl @flaky Test hover and click interactions', function() {
320
320
. then ( done ) ;
321
321
} ) ;
322
322
323
- it ( 'should show correct label for scattergl when hovertext is set' , function ( done ) {
323
+ it ( '@gl should show correct label for scattergl when hovertext is set' , function ( done ) {
324
324
var _mock = Lib . extendDeep ( { } , mock1 ) ;
325
325
_mock . data [ 0 ] . hovertext = 'text' ;
326
326
_mock . data [ 0 ] . hovertext = 'HoVeRtExT' ;
@@ -347,7 +347,7 @@ describe('@gl @flaky Test hover and click interactions', function() {
347
347
. then ( done ) ;
348
348
} ) ;
349
349
350
- it ( 'should output correct event data for pointcloud' , function ( done ) {
350
+ it ( '@gl should output correct event data for pointcloud' , function ( done ) {
351
351
var _mock = Lib . extendDeep ( { } , mock2 ) ;
352
352
353
353
_mock . layout . hoverlabel = { font : { size : 8 } } ;
@@ -375,7 +375,7 @@ describe('@gl @flaky Test hover and click interactions', function() {
375
375
. then ( done ) ;
376
376
} ) ;
377
377
378
- it ( 'should output correct event data for heatmapgl' , function ( done ) {
378
+ it ( '@gl should output correct event data for heatmapgl' , function ( done ) {
379
379
var _mock = Lib . extendDeep ( { } , mock3 ) ;
380
380
_mock . data [ 0 ] . type = 'heatmapgl' ;
381
381
@@ -408,7 +408,7 @@ describe('@gl @flaky Test hover and click interactions', function() {
408
408
. then ( done ) ;
409
409
} ) ;
410
410
411
- it ( 'should output correct event data for heatmapgl (asymmetric case) ' , function ( done ) {
411
+ it ( '@gl should output correct event data for heatmapgl (asymmetric case) ' , function ( done ) {
412
412
var _mock = {
413
413
data : [ {
414
414
type : 'heatmapgl' ,
@@ -441,7 +441,7 @@ describe('@gl @flaky Test hover and click interactions', function() {
441
441
. then ( done ) ;
442
442
} ) ;
443
443
444
- it ( 'should output correct event data for scattergl after visibility restyle' , function ( done ) {
444
+ it ( '@gl should output correct event data for scattergl after visibility restyle' , function ( done ) {
445
445
var _mock = Lib . extendDeep ( { } , mock4 ) ;
446
446
447
447
var run = makeRunner ( [ 435 , 216 ] , {
@@ -483,7 +483,7 @@ describe('@gl @flaky Test hover and click interactions', function() {
483
483
. then ( done ) ;
484
484
} ) ;
485
485
486
- it ( 'should output correct event data for scattergl-fancy' , function ( done ) {
486
+ it ( '@gl should output correct event data for scattergl-fancy' , function ( done ) {
487
487
var _mock = Lib . extendDeep ( { } , mock4 ) ;
488
488
_mock . data [ 0 ] . mode = 'markers+lines' ;
489
489
_mock . data [ 1 ] . mode = 'markers+lines' ;
@@ -531,7 +531,7 @@ describe('@gl @flaky Test hover and click interactions', function() {
531
531
. then ( done ) ;
532
532
} ) ;
533
533
534
- it ( 'should output correct event data contourgl' , function ( done ) {
534
+ it ( '@gl should output correct event data contourgl' , function ( done ) {
535
535
var _mock = Lib . extendDeep ( { } , mock3 ) ;
536
536
537
537
_mock . data [ 0 ] . hoverlabel = {
@@ -560,7 +560,7 @@ describe('@gl @flaky Test hover and click interactions', function() {
560
560
} ) ;
561
561
} ) ;
562
562
563
- describe ( '@noCI @gl Test gl2d lasso/select:' , function ( ) {
563
+ describe ( '@noCI Test gl2d lasso/select:' , function ( ) {
564
564
var mockFancy = require ( '@mocks/gl2d_14.json' ) ;
565
565
delete mockFancy . layout . xaxis . autorange ;
566
566
delete mockFancy . layout . yaxis . autorange ;
@@ -630,7 +630,7 @@ describe('@noCI @gl Test gl2d lasso/select:', function() {
630
630
}
631
631
632
632
633
- it ( 'should work under fast mode with *select* dragmode' , function ( done ) {
633
+ it ( '@gl should work under fast mode with *select* dragmode' , function ( done ) {
634
634
var _mock = Lib . extendDeep ( { } , mockFast ) ;
635
635
_mock . layout . dragmode = 'select' ;
636
636
gd = createGraphDiv ( ) ;
@@ -657,7 +657,7 @@ describe('@noCI @gl Test gl2d lasso/select:', function() {
657
657
. then ( done ) ;
658
658
} ) ;
659
659
660
- it ( 'should work under fast mode with *lasso* dragmode' , function ( done ) {
660
+ it ( '@gl should work under fast mode with *lasso* dragmode' , function ( done ) {
661
661
var _mock = Lib . extendDeep ( { } , mockFast ) ;
662
662
_mock . layout . dragmode = 'lasso' ;
663
663
gd = createGraphDiv ( ) ;
@@ -681,7 +681,7 @@ describe('@noCI @gl Test gl2d lasso/select:', function() {
681
681
. then ( done ) ;
682
682
} ) ;
683
683
684
- it ( 'should work under fancy mode with *select* dragmode' , function ( done ) {
684
+ it ( '@gl should work under fancy mode with *select* dragmode' , function ( done ) {
685
685
var _mock = Lib . extendDeep ( { } , mockFancy ) ;
686
686
_mock . layout . dragmode = 'select' ;
687
687
gd = createGraphDiv ( ) ;
@@ -701,7 +701,7 @@ describe('@noCI @gl Test gl2d lasso/select:', function() {
701
701
. then ( done ) ;
702
702
} ) ;
703
703
704
- it ( 'should work under fancy mode with *lasso* dragmode' , function ( done ) {
704
+ it ( '@gl should work under fancy mode with *lasso* dragmode' , function ( done ) {
705
705
var _mock = Lib . extendDeep ( { } , mockFancy ) ;
706
706
_mock . layout . dragmode = 'lasso' ;
707
707
gd = createGraphDiv ( ) ;
@@ -720,7 +720,7 @@ describe('@noCI @gl Test gl2d lasso/select:', function() {
720
720
. then ( done ) ;
721
721
} ) ;
722
722
723
- it ( 'should work on trace with enabled transforms' , function ( done ) {
723
+ it ( '@gl should work on trace with enabled transforms' , function ( done ) {
724
724
var fig = Lib . extendDeep ( { } , require ( '@mocks/gl2d_transforms.json' ) ) ;
725
725
fig . layout . dragmode = 'select' ;
726
726
fig . layout . margin = { t : 0 , b : 0 , l : 0 , r : 0 } ;
@@ -743,7 +743,7 @@ describe('@noCI @gl Test gl2d lasso/select:', function() {
743
743
. then ( done ) ;
744
744
} ) ;
745
745
746
- it ( 'should work on gl text charts' , function ( done ) {
746
+ it ( '@gl should work on gl text charts' , function ( done ) {
747
747
var fig = Lib . extendDeep ( { } , require ( '@mocks/gl2d_text_chart_basic.json' ) ) ;
748
748
fig . layout . dragmode = 'select' ;
749
749
fig . layout . margin = { t : 0 , b : 0 , l : 0 , r : 0 } ;
@@ -826,7 +826,7 @@ describe('@noCI @gl Test gl2d lasso/select:', function() {
826
826
. then ( done ) ;
827
827
} ) ;
828
828
829
- it ( 'should work on gl text charts with array textfont.color' , function ( done ) {
829
+ it ( '@gl should work on gl text charts with array textfont.color' , function ( done ) {
830
830
var fig = Lib . extendDeep ( { } , require ( '@mocks/gl2d_text_chart_arrays.json' ) ) ;
831
831
fig . layout . dragmode = 'select' ;
832
832
fig . layout . margin = { t : 0 , b : 0 , l : 0 , r : 0 } ;
@@ -906,7 +906,7 @@ describe('@noCI @gl Test gl2d lasso/select:', function() {
906
906
. then ( done ) ;
907
907
} ) ;
908
908
909
- it ( 'should work after a width/height relayout' , function ( done ) {
909
+ it ( '@gl should work after a width/height relayout' , function ( done ) {
910
910
gd = createGraphDiv ( ) ;
911
911
912
912
var w = 500 ;
@@ -965,7 +965,7 @@ describe('@noCI @gl Test gl2d lasso/select:', function() {
965
965
. then ( done ) ;
966
966
} ) ;
967
967
968
- it ( 'should behave correctly during select+doubleclick+pan scenarios' , function ( done ) {
968
+ it ( '@gl should behave correctly during select+doubleclick+pan scenarios' , function ( done ) {
969
969
gd = createGraphDiv ( ) ;
970
970
971
971
// See https://github.com/plotly/plotly.js/issues/2767
0 commit comments