From 5008149f0406a59ba595d45005d39f2d94e95a5d Mon Sep 17 00:00:00 2001 From: Marcel Gaupp Date: Tue, 10 Dec 2024 23:27:37 +0100 Subject: [PATCH] Add build directory to Jest's modulePathIgnorePatterns --- jest.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jest.config.js b/jest.config.js index 8f3838cd5088..ae186aed300c 100644 --- a/jest.config.js +++ b/jest.config.js @@ -128,7 +128,7 @@ module.exports = { }, ], }, - modulePathIgnorePatterns: ['/src/main/resources/templates/'], + modulePathIgnorePatterns: ['/src/main/resources/templates/', '/build/'], testTimeout: 3000, testMatch: [ '/src/test/javascript/spec/component/**/*.spec.ts',