We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f8d6af commit 0b449f0Copy full SHA for 0b449f0
test/image/compare_pixels_test.js
@@ -58,8 +58,9 @@ if(mockList.length === 0) {
58
59
// filter out untestable mocks if no pattern is specified
60
if(!pattern) {
61
- console.log('Filtering out untestable mocks\n');
+ console.log('Filtering out untestable mocks:');
62
mockList = mockList.filter(untestableFilter);
63
+ console.log('\n');
64
}
65
66
// main
@@ -81,11 +82,15 @@ else {
81
82
*
83
*/
84
function untestableFilter(mockName) {
- return !(
85
+ var cond = !(
86
mockName === 'font-wishlist' ||
87
mockName.indexOf('gl2d_') !== -1 ||
88
mockName.indexOf('mapbox_') !== -1
89
);
90
+
91
+ if(!cond) console.log(' -', mockName);
92
93
+ return cond;
94
95
96
function runInBatch(mockList) {
0 commit comments