module.exports = { preset: 'ts-jest', testEnvironment: 'node', testMatch: ['**/*.test.ts'], setupFiles: ['/src/test/setup.ts'], collectCoverage: true, coverageThreshold: { global: { lines: 80, }, }, };