From 37a61c1f82e23b85d04b047f9ede9572b56f1fbc Mon Sep 17 00:00:00 2001 From: tiagosiebler Date: Thu, 24 Jun 2021 00:43:31 +0100 Subject: [PATCH] disable check for open handles --- jest.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jest.config.js b/jest.config.js index ca73cf2..32b968b 100644 --- a/jest.config.js +++ b/jest.config.js @@ -9,7 +9,7 @@ module.exports = { preset: "ts-jest", verbose: true, // report individual test bail: false, // enable to stop test when an error occur, - detectOpenHandles: true, + detectOpenHandles: false, moduleDirectories: ['node_modules', 'src', 'test'], testMatch: ['**/test/**/*.test.ts?(x)'], testPathIgnorePatterns: ['node_modules/', 'dist/', '.json'],