This commit is contained in:
SaraJane
2025-12-30 13:07:28 +00:00
commit 93e3f09667
95 changed files with 20233 additions and 0 deletions

View File

@ -0,0 +1,20 @@
import type { Config } from '@jest/types'
const config: Config.InitialOptions = {
preset: 'ts-jest',
testEnvironment: 'node',
testMatch: ['**/*.spec.ts', '**/*.spec.tsx'],
moduleDirectories: ['node_modules', 'src'],
transform: {
'<regex_match_files>': [
'ts-jest',
{
tsconfig: 'tsconfig.test.json',
},
],
},
coveragePathIgnorePatterns: ['tests'],
testPathIgnorePatterns: ['/tests/'],
}
export default config