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