client-mcp/jest.config.js
2025-06-11 10:42:40 +05:30

18 lines
421 B
JavaScript

module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
testRegex: '(/__tests__/.*|\\.(test|spec))\\.ts$',
moduleFileExtensions: ['ts', 'js', 'json', 'node'],
collectCoverage: true,
coverageDirectory: 'coverage',
coverageReporters: ['text', 'lcov'],
coveragePathIgnorePatterns: [
'/node_modules/',
'/dist/',
'/coverage/',
'/__tests__/'
],
verbose: true,
testTimeout: 10000
};