disable check for open handles

This commit is contained in:
tiagosiebler
2021-06-24 00:43:31 +01:00
parent df6fe4ac38
commit 37a61c1f82

View File

@@ -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'],