From 32eb8498082886c95c18271413964adb67be2d20 Mon Sep 17 00:00:00 2001 From: MasterAcnolo Date: Sun, 2 Aug 2026 21:40:39 +0200 Subject: [PATCH] fix: exclude dist, release and build folder from jest config --- jest.config.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/jest.config.js b/jest.config.js index a7403d9..eb1fcfc 100644 --- a/jest.config.js +++ b/jest.config.js @@ -6,4 +6,16 @@ module.exports = { "app/**/*.js", "!app/autoUpdater.js", ], + + modulePathIgnorePatterns: [ + "/dist", + "/release", + "/build", + ], + + watchPathIgnorePatterns: [ + "/dist", + "/release", + "/build", + ], }; \ No newline at end of file