Skip to content

Commit

Permalink
Tests: temporarily skip known failure on FreeBSD
Browse files Browse the repository at this point in the history
  • Loading branch information
lovell committed May 15, 2020
1 parent 33ac8b9 commit 0872f49
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/unit/io.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 0872f49

Please sign in to comment.