Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e23ee6e

Browse files
committed
enforce no @gl + @flaky on same test
1 parent c9a4eb5 commit e23ee6e

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

test/jasmine/tests/gl2d_plot_interact_test.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ describe('Test gl2d plots', function() {
248248
});
249249
}
250250

251-
it('@gl @flaky should respond to drag interactions', function(done) {
251+
it('@gl should respond to drag interactions', function(done) {
252252
var _mock = Lib.extendDeep({}, mock);
253253

254254
var relayoutCallback = jasmine.createSpy('relayoutCallback');
@@ -354,7 +354,7 @@ describe('Test gl2d plots', function() {
354354
.then(done);
355355
});
356356

357-
it('@gl @flaky should be able to toggle visibility', function(done) {
357+
it('@gl should be able to toggle visibility', function(done) {
358358
var _mock = Lib.extendDeep({}, mock);
359359
_mock.data[0].line.width = 5;
360360

@@ -534,7 +534,7 @@ describe('Test gl2d plots', function() {
534534
.then(done);
535535
});
536536

537-
it('@gl @flaky supports 1D and 2D Zoom', function(done) {
537+
it('@gl supports 1D and 2D Zoom', function(done) {
538538
var centerX;
539539
var centerY;
540540

@@ -587,7 +587,7 @@ describe('Test gl2d plots', function() {
587587
.then(done);
588588
});
589589

590-
it('@gl @flaky supports axis constraints with zoom', function(done) {
590+
it('@gl supports axis constraints with zoom', function(done) {
591591
var centerX;
592592
var centerY;
593593

@@ -654,7 +654,7 @@ describe('Test gl2d plots', function() {
654654
.then(done);
655655
});
656656

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) {
658658
Plotly.plot(gd, [{}]);
659659
expect(function() {
660660
Plotly.restyle(gd, {type: 'scattergl', x: [[1]]}, 0);
@@ -667,7 +667,7 @@ describe('Test gl2d plots', function() {
667667
done();
668668
});
669669

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) {
671671
function assertAnnotation(xy) {
672672
var ann = d3.select('g.annotation-text-g').select('g');
673673
var translate = Drawing.getTranslate(ann);
@@ -710,7 +710,7 @@ describe('Test gl2d plots', function() {
710710
.then(done);
711711
});
712712

713-
it('@gl @flaky should not scroll document while panning', function(done) {
713+
it('@gl should not scroll document while panning', function(done) {
714714
var mock = {
715715
data: [
716716
{ type: 'scattergl', y: [1, 2, 3], x: [1, 2, 3] }
@@ -872,7 +872,7 @@ describe('Test gl2d plots', function() {
872872
.then(done);
873873
});
874874

875-
it('@gl @flaky should remove fill2d', function(done) {
875+
it('@gl should remove fill2d', function(done) {
876876
var mock = require('@mocks/gl2d_axes_labels2.json');
877877

878878
Plotly.plot(gd, mock.data, mock.layout)

test/jasmine/tests/parcoords_test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1014,7 +1014,7 @@ describe('parcoords basic use', function() {
10141014
.then(done);
10151015
});
10161016

1017-
it('@gl @flaky Calling `Plotly.animate` with patches targeting `dimensions` attributes should do the right thing', function(done) {
1017+
it('@gl Calling `Plotly.animate` with patches targeting `dimensions` attributes should do the right thing', function(done) {
10181018
Plotly.react(gd, [{
10191019
type: 'parcoords',
10201020
line: {color: 'blue'},

0 commit comments

Comments
 (0)