Skip to content

Commit bc1bce4

Browse files
committed
drop some noCI flags
1 parent a4285e5 commit bc1bce4

File tree

7 files changed

+17
-18
lines changed

7 files changed

+17
-18
lines changed

test/jasmine/tests/choroplethmapbox_test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ describe('Test choroplethmapbox convert:', function() {
516516
});
517517
});
518518

519-
describe('@noCI Test choroplethmapbox hover:', function() {
519+
describe('Test choroplethmapbox hover:', function() {
520520
var gd;
521521

522522
afterEach(function(done) {
@@ -653,7 +653,7 @@ describe('@noCI Test choroplethmapbox hover:', function() {
653653
});
654654
});
655655

656-
describe('@noCI Test choroplethmapbox interactions:', function() {
656+
describe('Test choroplethmapbox interactions:', function() {
657657
var gd;
658658

659659
var geojson = {

test/jasmine/tests/densitymapbox_test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ describe('Test densitymapbox convert:', function() {
270270
});
271271
});
272272

273-
describe('@noCI Test densitymapbox hover:', function() {
273+
describe('Test densitymapbox hover:', function() {
274274
var gd;
275275

276276
afterEach(function(done) {
@@ -375,7 +375,7 @@ describe('@noCI Test densitymapbox hover:', function() {
375375
});
376376
});
377377

378-
describe('@noCI Test densitymapbox interactions:', function() {
378+
describe('Test densitymapbox interactions:', function() {
379379
var gd;
380380

381381
beforeEach(function() {

test/jasmine/tests/mapbox_test.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ describe('mapbox credentials', function() {
486486
}, LONG_TIMEOUT_INTERVAL);
487487
});
488488

489-
describe('@noCI, mapbox plots', function() {
489+
describe('mapbox plots', function() {
490490
var mock = require('@mocks/mapbox_0.json');
491491
var gd;
492492

@@ -1674,7 +1674,7 @@ describe('@noCI, mapbox plots', function() {
16741674
}
16751675
});
16761676

1677-
describe('@noCI, mapbox react', function() {
1677+
describe('mapbox react', function() {
16781678
var gd;
16791679

16801680
beforeEach(function() {
@@ -1751,7 +1751,7 @@ describe('@noCI, mapbox react', function() {
17511751
}, LONG_TIMEOUT_INTERVAL);
17521752
});
17531753

1754-
describe('@noCI test mapbox trace/layout *below* interactions', function() {
1754+
describe('test mapbox trace/layout *below* interactions', function() {
17551755
var gd;
17561756

17571757
beforeEach(function() {
@@ -2015,7 +2015,7 @@ describe('@noCI test mapbox trace/layout *below* interactions', function() {
20152015
}, 8 * jasmine.DEFAULT_TIMEOUT_INTERVAL);
20162016
});
20172017

2018-
describe('@noCI Test mapbox GeoJSON fetching:', function() {
2018+
describe('Test mapbox GeoJSON fetching:', function() {
20192019
var gd;
20202020

20212021
beforeEach(function() {
@@ -2083,7 +2083,7 @@ describe('@noCI Test mapbox GeoJSON fetching:', function() {
20832083
}, LONG_TIMEOUT_INTERVAL);
20842084
});
20852085

2086-
describe('@noCI, mapbox toImage', function() {
2086+
describe('mapbox toImage', function() {
20872087
// decreased from 1e5 - perhaps chrome got better at encoding these
20882088
// because I get 99330 and the image still looks correct
20892089
var MINIMUM_LENGTH = 7e4;

test/jasmine/tests/modebar_test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1353,7 +1353,7 @@ describe('ModeBar', function() {
13531353
});
13541354
});
13551355

1356-
describe('@noCI mapbox handlers', function() {
1356+
describe('mapbox handlers', function() {
13571357
it('@gl button *resetViewMapbox* should reset the mapbox view attribute to their default', function(done) {
13581358
var gd = createGraphDiv();
13591359

test/jasmine/tests/sankey_test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1349,7 +1349,7 @@ describe('sankey tests', function() {
13491349
.then(done);
13501350
});
13511351

1352-
it('@noCI should persist the position of every nodes after drag in attributes nodes.(x|y)', function(done) {
1352+
it('should persist the position of every nodes after drag in attributes nodes.(x|y)', function(done) {
13531353
mockCopy.data[0].arrangement = arrangement;
13541354
var move = [50, -50];
13551355
var nodes;

test/jasmine/tests/scattermapbox_test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ describe('scattermapbox convert', function() {
658658
});
659659
});
660660

661-
describe('@noCI scattermapbox hover', function() {
661+
describe('scattermapbox hover', function() {
662662
var hoverPoints = ScatterMapbox.hoverPoints;
663663
var gd;
664664

@@ -917,7 +917,7 @@ describe('@noCI scattermapbox hover', function() {
917917
});
918918
});
919919

920-
describe('@noCI Test plotly events on a scattermapbox plot:', function() {
920+
describe('Test plotly events on a scattermapbox plot:', function() {
921921
var mock = require('@mocks/mapbox_0.json');
922922
var pointPos = [440, 290];
923923
var nearPos = [460, 290];
@@ -1088,7 +1088,7 @@ describe('@noCI Test plotly events on a scattermapbox plot:', function() {
10881088
});
10891089
});
10901090

1091-
describe('@noCI Test plotly events on a scattermapbox plot when css transform is present:', function() {
1091+
describe('Test plotly events on a scattermapbox plot when css transform is present:', function() {
10921092
var mock = require('@mocks/mapbox_0.json');
10931093
var pointPos = [440 / 2, 290 / 2];
10941094
var nearPos = [460 / 2, 290 / 2];

test/jasmine/tests/select_test.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -676,7 +676,7 @@ describe('Click-to-select', function() {
676676
{ mapboxAccessToken: require('@build/credentials.json').MAPBOX_ACCESS_TOKEN })
677677
]
678678
.forEach(function(testCase) {
679-
it('@noCI @gl trace type ' + testCase.label, function(done) {
679+
it('@gl trace type ' + testCase.label, function(done) {
680680
_run(testCase, done);
681681
});
682682
});
@@ -758,14 +758,13 @@ describe('Click-to-select', function() {
758758
});
759759
});
760760

761-
// The mapbox traces: use @noCI annotation cause they are usually too resource-intensive
762761
[
763762
testCase('mapbox', require('@mocks/mapbox_0.json'), 650, 195, [[2], []], {},
764763
{ mapboxAccessToken: require('@build/credentials.json').MAPBOX_ACCESS_TOKEN }),
765764
testCase('mapbox', require('@mocks/mapbox_choropleth0.json'), 270, 220, [[0], []], {},
766765
{ mapboxAccessToken: require('@build/credentials.json').MAPBOX_ACCESS_TOKEN })
767766
].forEach(function(testCase) {
768-
it('@noCI @gl for base plot ' + testCase.label, function(done) {
767+
it('@gl for base plot ' + testCase.label, function(done) {
769768
_run(testCase, done);
770769
});
771770
});
@@ -1984,7 +1983,7 @@ describe('Test select box and lasso per trace:', function() {
19841983
});
19851984

19861985
[false, true].forEach(function(hasCssTransform) {
1987-
it('@noCI @gl should work on scattermapbox traces, hasCssTransform: ' + hasCssTransform, function(done) {
1986+
it('@gl should work on scattermapbox traces, hasCssTransform: ' + hasCssTransform, function(done) {
19881987
var assertPoints = makeAssertPoints(['lon', 'lat']);
19891988
var assertRanges = makeAssertRanges('mapbox');
19901989
var assertLassoPoints = makeAssertLassoPoints('mapbox');

0 commit comments

Comments
 (0)