11 lines
287 B
TypeScript
11 lines
287 B
TypeScript
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
testEnvironmentOptions: {
|
|
NODE_ENV: 'test'
|
|
},
|
|
restoreMocks: true,
|
|
coveragePathIgnorePatterns: ['node_modules', 'src/config', 'src/app.ts', 'tests'],
|
|
coverageReporters: ['text', 'lcov', 'clover', 'html']
|
|
};
|