From 0872f495f91eb210815a3a1c6817638b0985f837 Mon Sep 17 00:00:00 2001 From: Lovell Fuller Date: Fri, 15 May 2020 12:17:45 +0100 Subject: [PATCH] Tests: temporarily skip known failure on FreeBSD --- test/unit/io.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/unit/io.js b/test/unit/io.js index 4715f498..cb186d59 100644 --- a/test/unit/io.js +++ b/test/unit/io.js @@ -302,6 +302,7 @@ describe('Input/output', function () { }); it('Fail when input is empty Buffer', function (done) { + if (process.platform === 'freebsd') return this.skip(); // can be removed with libvips 8.10.0+ sharp(Buffer.alloc(0)).toBuffer().then(function () { assert(false); done();