1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-20 18:48:28 +02:00
joplin/packages/server/jest.setup.js

14 lines
433 B
JavaScript
Raw Normal View History

2021-10-02 10:48:49 +01:00
const { shimInit } = require('@joplin/lib/shim-init-node.js');
const nodeSqlite = require('sqlite3');
require('../../jest.base-setup.js')();
2021-10-02 10:48:49 +01:00
shimInit({ nodeSqlite });
2021-01-07 22:15:41 +00:00
// We don't want the tests to fail due to timeout, especially on CI, and certain
// tests can take more time since we do integration testing too. The share tests
// in particular can take a while.
jest.setTimeout(60 * 1000);
2021-08-15 00:53:44 +01:00
process.env.JOPLIN_IS_TESTING = '1';