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 b00966c commit 3b0e6abCopy full SHA for 3b0e6ab
test/image/compare_pixels_test.js
@@ -31,7 +31,8 @@ function runAll () {
31
32
// -1 for font-wishlist and
33
// -38 for the gl2d mocks
34
- t.plan(files.length - 39);
+ // -1 for gl3d_bunny-hull
35
+ t.plan(files.length - 40);
36
37
for (var i = 0; i < files.length; i ++) {
38
testMock(files[i], t);
@@ -54,6 +55,9 @@ function testMock (fileName, t) {
54
55
// TODO fix race condition in gl2d image generation
56
if(fileName.indexOf('gl2d_') !== -1) return;
57
58
+ // TODO fix run-to-run randomness
59
+ if(fileName === 'gl3d_bunny-hull.json') return;
60
+
61
var figure = require(path.join(constants.pathToTestImageMocks, fileName));
62
var bodyMock = {
63
figure: figure,
0 commit comments