11 lines
299 B
TypeScript
11 lines
299 B
TypeScript
export default {
|
|
displayName: 'nest',
|
|
preset: '../../jest.preset.js',
|
|
testEnvironment: 'node',
|
|
transform: {
|
|
'^.+\\.[tj]s$': ['ts-jest', { tsconfig: '<rootDir>/tsconfig.spec.json' }],
|
|
},
|
|
moduleFileExtensions: ['ts', 'js', 'html'],
|
|
coverageDirectory: '../../coverage/tools/nest',
|
|
};
|