1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-26 22:41:17 +02:00

Tools: Fixed tests

This commit is contained in:
Laurent Cozic
2021-10-02 10:48:49 +01:00
parent 4a7746beb2
commit d5eb21d318

View File

@@ -1,3 +1,8 @@
const { shimInit } = require('@joplin/lib/shim-init-node.js');
const nodeSqlite = require('sqlite3');
shimInit({ nodeSqlite });
// 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.
jest.setTimeout(30 * 1000);