sharp/test/unit/cache.js
Lovell Fuller c8ff7e11a9 Upgrade to libvips v8.7.0
Drop Node 4 support
Add experimental musl prebuild for Node 8 and 10
2018-09-19 21:38:09 +01:00

11 lines
207 B
JavaScript

'use strict';
const detectLibc = require('detect-libc');
const sharp = require('../../');
const usingCache = detectLibc.family !== detectLibc.MUSL;
beforeEach(function () {
sharp.cache(usingCache);
});