helpyourneighbour/backend/jest.config.js

18 lines
359 B
JavaScript
Raw Normal View History

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'
},
transformIgnorePatterns: [
'/node_modules/',
'/backend/src/__tests__/'
]
2026-03-17 07:07:36 +00:00
};