Skip to content

Commit 3b0e6ab

Browse files
committed
skip over gl3d_bunny-hull in pixel comparison test:
- this test outputs random pixel from run-to-run, skip for now.
1 parent b00966c commit 3b0e6ab

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/image/compare_pixels_test.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ function runAll () {
3131

3232
// -1 for font-wishlist and
3333
// -38 for the gl2d mocks
34-
t.plan(files.length - 39);
34+
// -1 for gl3d_bunny-hull
35+
t.plan(files.length - 40);
3536

3637
for (var i = 0; i < files.length; i ++) {
3738
testMock(files[i], t);
@@ -54,6 +55,9 @@ function testMock (fileName, t) {
5455
// TODO fix race condition in gl2d image generation
5556
if(fileName.indexOf('gl2d_') !== -1) return;
5657

58+
// TODO fix run-to-run randomness
59+
if(fileName === 'gl3d_bunny-hull.json') return;
60+
5761
var figure = require(path.join(constants.pathToTestImageMocks, fileName));
5862
var bodyMock = {
5963
figure: figure,

0 commit comments

Comments
 (0)