mirror of
https://github.com/lovell/sharp.git
synced 2026-01-18 16:13:17 +00:00
11 lines
207 B
JavaScript
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);
|
|
});
|