mirror of
https://github.com/lovell/sharp.git
synced 2025-07-09 10:30:15 +02: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);
|
|
});
|