Files
blackroad-os-pack-finance/jest.config.js
2025-11-28 23:12:32 -06:00

16 lines
394 B
JavaScript

module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
roots: ['<rootDir>'],
testMatch: ['**/__tests__/**/*.ts', '**/?(*.)+(spec|test).ts'],
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
collectCoverageFrom: [
'agents/**/*.ts',
'lib/**/*.ts',
'models/**/*.ts',
'!**/*.d.ts',
'!**/node_modules/**'
]
roots: ['<rootDir>/tests'],
};