From 34dd48ecb64dcf29362fec420f5c89cea4f18522 Mon Sep 17 00:00:00 2001 From: JGerla Date: Wed, 22 Oct 2025 12:39:35 +0200 Subject: [PATCH] fix: updated jest.config.js to allow for folders in the test directory ref: N25B-212 --- jest.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jest.config.js b/jest.config.js index ea33067..7f582d1 100644 --- a/jest.config.js +++ b/jest.config.js @@ -7,7 +7,7 @@ export default { '^@/(.*)$': '/src/$1', '\\.(css|scss|sass)$': 'identity-obj-proxy' }, - testMatch: ['/test/*.test.(ts|tsx)'], + testMatch: ['/test/**/*.test.(ts|tsx)'], transform: { '^.+\\.(ts|tsx)$': ['ts-jest', { useESM: true, tsconfig: 'tsconfig.jest.json' }] }