2026-03-17 07:07:36 +00:00
|
|
|
export default {
|
|
|
|
|
testEnvironment: 'node',
|
|
|
|
|
transform: {
|
|
|
|
|
'^.+\\.js$': 'babel-jest'
|
|
|
|
|
},
|
|
|
|
|
testMatch: [
|
|
|
|
|
'**/tests/**/*.test.js',
|
|
|
|
|
'**/__tests__/**/*.js'
|
|
|
|
|
],
|
|
|
|
|
moduleNameMapper: {
|
|
|
|
|
'^src/(.*)$': '<rootDir>/src/$1',
|
|
|
|
|
'^backend/(.*)$': '<rootDir>/$1'
|
2026-03-17 09:07:48 +00:00
|
|
|
},
|
|
|
|
|
transformIgnorePatterns: [
|
|
|
|
|
'/node_modules/',
|
2026-03-17 10:09:15 +00:00
|
|
|
'/backend/src/__tests__/'
|
2026-03-17 09:07:48 +00:00
|
|
|
]
|
2026-03-17 07:07:36 +00:00
|
|
|
};
|