Update coverage reports and fix Ollama client abort handling

This commit is contained in:
2026-05-06 23:44:29 +02:00
parent 0920e0959e
commit cec8302dbe
15 changed files with 1945 additions and 1469 deletions
+6 -6
View File
@@ -4,15 +4,15 @@ module.exports = {
testMatch: ['**/tests/**/*.test.ts'],
moduleFileExtensions: ['ts', 'js', 'json', 'node'],
transform: {
'^.+\\.ts$': 'ts-jest',
'^.+\\.ts$': [
'ts-jest',
{
tsconfig: 'tsconfig.test.json',
},
],
},
coverageDirectory: 'coverage',
collectCoverage: true,
coverageReporters: ['text', 'lcov'],
setupFiles: ['./jest.setup.js'],
globals: {
'ts-jest': {
tsconfig: 'tsconfig.test.json',
},
},
};