From ccca32d7b2757ed0e14812653c3103933789ff9b Mon Sep 17 00:00:00 2001 From: Lars Strojny Date: Thu, 24 Nov 2022 19:23:40 +0100 Subject: [PATCH] Exclude dist folder from tests search paths --- jest.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/jest.config.js b/jest.config.js index f3dcf94..64338a9 100644 --- a/jest.config.js +++ b/jest.config.js @@ -3,4 +3,5 @@ module.exports = { preset: 'ts-jest', testEnvironment: 'node', verbose: true, + testPathIgnorePatterns: ['dist'], }