10 lines
239 B
JavaScript
10 lines
239 B
JavaScript
|
module.exports = {
|
||
|
name: 'contact',
|
||
|
preset: '../../jest.config.js',
|
||
|
transform: {
|
||
|
'^.+\\.[tj]sx?$': 'ts-jest'
|
||
|
},
|
||
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'html'],
|
||
|
coverageDirectory: '../../coverage/libs/contact',
|
||
|
};
|