mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-27 08:21:03 +02:00
10 lines
237 B
JavaScript
10 lines
237 B
JavaScript
const { afterEachCleanUp } = require('./testing/test-utils.js');
|
|
const { shimInit } = require('./shim-init-node.js');
|
|
const sharp = require('sharp');
|
|
|
|
shimInit(sharp, null);
|
|
|
|
global.afterEach(async () => {
|
|
await afterEachCleanUp();
|
|
});
|