eust-conciliation
Version:
26 lines (24 loc) • 567 B
text/typescript
/*
* For a detailed explanation regarding each configuration property and type check, visit:
* https://jestjs.io/docs/en/configuration.html
*/
export default {
clearMocks: true,
collectCoverage: true,
collectCoverageFrom: [
'src/**/*.{js,ts,jsx,tsx}',
],
coveragePathIgnorePatterns: [
'/node_modules/',
'/test/',
'index.ts',
'/application/contracts/',
],
coverageProvider: 'v8',
preset: 'ts-jest',
testEnvironment: 'node',
testMatch: [
'**/test/**/*(spec|test).[jt]s?(x)',
'**/?(*.)+(spec|test).[tj]s?(x)',
],
};