mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-27 08:21:03 +02:00
38 lines
918 B
JavaScript
38 lines
918 B
JavaScript
/* eslint-disable jest/require-top-level-describe */
|
|
|
|
const { shimInit } = require('@joplin/lib/shim-init-node');
|
|
const sqlite3 = require('sqlite3');
|
|
const SyncTargetNone = require('@joplin/lib/SyncTargetNone').default;
|
|
|
|
// Mock the S3 sync target -- the @aws-s3 libraries depend on an old version
|
|
// of uuid that doesn't work with jest without additional configuration.
|
|
jest.doMock('@joplin/lib/SyncTargetAmazonS3', () => {
|
|
return SyncTargetNone;
|
|
});
|
|
|
|
// @electron/remote requires electron to be running. Mock it.
|
|
jest.mock('@electron/remote', () => {
|
|
return {
|
|
require: () => {
|
|
return {
|
|
default: {},
|
|
};
|
|
},
|
|
};
|
|
});
|
|
|
|
// Import after mocking problematic libraries
|
|
const { afterEachCleanUp, afterAllCleanUp } = require('@joplin/lib/testing/test-utils.js');
|
|
|
|
|
|
shimInit({ nodeSqlite: sqlite3 });
|
|
|
|
afterEach(async () => {
|
|
await afterEachCleanUp();
|
|
});
|
|
|
|
afterAll(async () => {
|
|
await afterAllCleanUp();
|
|
});
|
|
|