fix: updated jest.config.js to allow for folders in the test directory

ref: N25B-212
This commit is contained in:
JGerla
2025-10-22 12:39:35 +02:00
parent b365a8754e
commit 34dd48ecb6

View File

@@ -7,7 +7,7 @@ export default {
'^@/(.*)$': '<rootDir>/src/$1',
'\\.(css|scss|sass)$': 'identity-obj-proxy'
},
testMatch: ['<rootDir>/test/*.test.(ts|tsx)'],
testMatch: ['<rootDir>/test/**/*.test.(ts|tsx)'],
transform: {
'^.+\\.(ts|tsx)$': ['ts-jest', { useESM: true, tsconfig: 'tsconfig.jest.json' }]
}