Tests: temporarily skip known failure on FreeBSD

This commit is contained in:
Lovell Fuller 2020-05-15 12:17:45 +01:00
parent 33ac8b93a9
commit 0872f495f9

View File

@ -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();