@@ -248,7 +248,7 @@ describe('Test gl2d plots', function() {
248
248
} ) ;
249
249
}
250
250
251
- it ( '@gl @flaky should respond to drag interactions' , function ( done ) {
251
+ it ( '@gl should respond to drag interactions' , function ( done ) {
252
252
var _mock = Lib . extendDeep ( { } , mock ) ;
253
253
254
254
var relayoutCallback = jasmine . createSpy ( 'relayoutCallback' ) ;
@@ -354,7 +354,7 @@ describe('Test gl2d plots', function() {
354
354
. then ( done ) ;
355
355
} ) ;
356
356
357
- it ( '@gl @flaky should be able to toggle visibility' , function ( done ) {
357
+ it ( '@gl should be able to toggle visibility' , function ( done ) {
358
358
var _mock = Lib . extendDeep ( { } , mock ) ;
359
359
_mock . data [ 0 ] . line . width = 5 ;
360
360
@@ -534,7 +534,7 @@ describe('Test gl2d plots', function() {
534
534
. then ( done ) ;
535
535
} ) ;
536
536
537
- it ( '@gl @flaky supports 1D and 2D Zoom' , function ( done ) {
537
+ it ( '@gl supports 1D and 2D Zoom' , function ( done ) {
538
538
var centerX ;
539
539
var centerY ;
540
540
@@ -587,7 +587,7 @@ describe('Test gl2d plots', function() {
587
587
. then ( done ) ;
588
588
} ) ;
589
589
590
- it ( '@gl @flaky supports axis constraints with zoom' , function ( done ) {
590
+ it ( '@gl supports axis constraints with zoom' , function ( done ) {
591
591
var centerX ;
592
592
var centerY ;
593
593
@@ -654,7 +654,7 @@ describe('Test gl2d plots', function() {
654
654
. then ( done ) ;
655
655
} ) ;
656
656
657
- it ( '@gl @flaky should change plot type with incomplete data' , function ( done ) {
657
+ it ( '@gl should change plot type with incomplete data' , function ( done ) {
658
658
Plotly . plot ( gd , [ { } ] ) ;
659
659
expect ( function ( ) {
660
660
Plotly . restyle ( gd , { type : 'scattergl' , x : [ [ 1 ] ] } , 0 ) ;
@@ -667,7 +667,7 @@ describe('Test gl2d plots', function() {
667
667
done ( ) ;
668
668
} ) ;
669
669
670
- it ( '@gl @flaky data-referenced annotations should update on drag' , function ( done ) {
670
+ it ( '@gl data-referenced annotations should update on drag' , function ( done ) {
671
671
function assertAnnotation ( xy ) {
672
672
var ann = d3 . select ( 'g.annotation-text-g' ) . select ( 'g' ) ;
673
673
var translate = Drawing . getTranslate ( ann ) ;
@@ -710,7 +710,7 @@ describe('Test gl2d plots', function() {
710
710
. then ( done ) ;
711
711
} ) ;
712
712
713
- it ( '@gl @flaky should not scroll document while panning' , function ( done ) {
713
+ it ( '@gl should not scroll document while panning' , function ( done ) {
714
714
var mock = {
715
715
data : [
716
716
{ type : 'scattergl' , y : [ 1 , 2 , 3 ] , x : [ 1 , 2 , 3 ] }
@@ -872,7 +872,7 @@ describe('Test gl2d plots', function() {
872
872
. then ( done ) ;
873
873
} ) ;
874
874
875
- it ( '@gl @flaky should remove fill2d' , function ( done ) {
875
+ it ( '@gl should remove fill2d' , function ( done ) {
876
876
var mock = require ( '@mocks/gl2d_axes_labels2.json' ) ;
877
877
878
878
Plotly . plot ( gd , mock . data , mock . layout )
0 commit comments