1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-27 08:21:03 +02:00
joplin/packages/lib/jest.setup.js
2021-05-21 17:02:56 +02:00

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();
});