1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

Tools: Increase Jest timeout on server tests

This commit is contained in:
Laurent Cozic 2021-01-07 21:34:07 +00:00
parent 32dab88054
commit f43ec71d9a

View File

@ -13,6 +13,10 @@ const packageRootDir = `${__dirname}/../..`;
let db_: DbConnection = null;
// 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);
// require('source-map-support').install();
export async function beforeAllDb(unitName: string) {