Skip to content

Commit 6540ade

Browse files
committed
revisit blacklist in compare_pixels_test.js
1 parent fd50eb5 commit 6540ade

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

test/image/compare_pixels_test.js

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,15 @@ argv._.forEach(function(pattern) {
6060
}
6161
});
6262

63-
allMockList = allMockList.filter(function(a) {
64-
return (
65-
// used to pass before 2023 Jun 20
66-
a !== 'mapbox_stamen-style'
67-
);
68-
});
63+
var blacklist = [
64+
'gl2d_pointcloud-basic',
65+
'gl2d_heatmapgl',
66+
'gl2d_heatmapgl_discrete',
67+
'mapbox_stamen-style',
68+
'plot_types',
69+
'trace_metatext',
70+
'zz-gl3d_surface_small_timerange',
71+
];
6972

7073
if(virtualWebgl) {
7174
allMockList = allMockList.filter(function(a) {
@@ -103,11 +106,7 @@ for(var i = 0; i < allMockList.length; i++) {
103106
var mockName = allMockList[i];
104107

105108
// skip blacklist
106-
if([
107-
108-
].indexOf(mockName) !== -1) {
109-
continue;
110-
}
109+
if(blacklist.indexOf(mockName) !== -1) continue;
111110

112111
var isMapbox = mockName.substr(0, 7) === 'mapbox_';
113112
var isOtherFlaky = [

0 commit comments

Comments
 (0)