File tree Expand file tree Collapse file tree 1 file changed +1
-16
lines changed
Expand file tree Collapse file tree 1 file changed +1
-16
lines changed Original file line number Diff line number Diff line change @@ -63,15 +63,11 @@ argv._.forEach(function(pattern) {
6363var blacklist = [
6464 'map_angles' ,
6565 'map_stamen-style' ,
66- 'mapbox_stamen-style' ,
67- 'mapbox_custom-style' ,
68- 'mapbox_density0-legend' ,
69- 'mapbox_osm-style' ,
7066] ;
7167
7268if ( virtualWebgl ) {
7369 allMockList = allMockList . filter ( function ( a ) {
74- return a . slice ( 0 , 2 ) === 'gl' || a . slice ( 0 , 6 ) === 'mapbox' ;
70+ return a . slice ( 0 , 2 ) === 'gl' ;
7571 } ) ;
7672}
7773
@@ -108,23 +104,12 @@ for(var i = 0; i < allMockList.length; i++) {
108104 // skip blacklist
109105 if ( blacklist . indexOf ( mockName ) !== - 1 ) continue ;
110106
111- var isMapbox = mockName . substr ( 0 , 7 ) === 'mapbox_' ;
112-
113- // We have to skip mapbox since Aug 2024
114- // See https://github.com/plotly/plotly.js/issues/7075
115- if ( isMapbox ) continue ;
116-
117107 var flakyMap = [
118108 // more flaky
119109 'map_density0-legend' ,
120110 'map_osm-style' ,
121111 'map_predefined-styles1' ,
122112 'map_predefined-styles2' ,
123-
124- 'mapbox_angles' ,
125- 'mapbox_layers' ,
126- 'mapbox_custom-style' ,
127- 'mapbox_geojson-attributes'
128113 ] . indexOf ( mockName ) !== - 1 ;
129114
130115 var otherFlaky = [
You can’t perform that action at this time.
0 commit comments