You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
359 B
18 lines
359 B
4 years ago
|
module.exports = {
|
||
|
displayName: 'api',
|
||
3 years ago
|
|
||
4 years ago
|
globals: {
|
||
|
'ts-jest': {
|
||
|
tsconfig: '<rootDir>/tsconfig.spec.json'
|
||
|
}
|
||
|
},
|
||
|
transform: {
|
||
|
'^.+\\.[tj]s$': 'ts-jest'
|
||
|
},
|
||
|
moduleFileExtensions: ['ts', 'js', 'html'],
|
||
|
coverageDirectory: '../../coverage/apps/api',
|
||
3 years ago
|
testTimeout: 10000,
|
||
3 years ago
|
testEnvironment: 'node',
|
||
|
preset: '../../jest.preset.ts'
|
||
4 years ago
|
};
|