mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-03 08:35:29 +02:00
14 lines
370 B
JavaScript
14 lines
370 B
JavaScript
const { afterEachCleanUp } = require('./testing/test-utils.js');
|
|
const { shimInit } = require('./shim-init-node.js');
|
|
const sharp = require('sharp');
|
|
const nodeSqlite = require('sqlite3');
|
|
const pdfJs = require('pdfjs-dist');
|
|
|
|
require('../../jest.base-setup.js')();
|
|
|
|
shimInit({ sharp, nodeSqlite, pdfJs });
|
|
|
|
global.afterEach(async () => {
|
|
await afterEachCleanUp();
|
|
});
|