added jest for tests

This commit is contained in:
2025-10-21 22:57:33 +02:00
parent 5e248c662f
commit f64fb08566
3 changed files with 519 additions and 3 deletions

18
backend/jest.config.js Normal file
View File

@@ -0,0 +1,18 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
roots: ['<rootDir>/src'],
testMatch: [
'**/__tests__/**/*.+(ts|tsx|js)',
'**/?(*.)+(spec|test).+(ts|tsx|js)'
],
transform: {
'^.+\.(ts|tsx)$': 'ts-jest',
},
collectCoverageFrom: [
'src/**/*.{js,ts}',
'!src/server.ts',
'!src/**/*.d.ts'
],
};