ProjectMark-Rodrigo/jest.config.ts

12 lines
228 B
TypeScript
Raw Normal View History

module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
moduleFileExtensions: ['ts', 'js'],
testMatch: ['**/tests/**/*.test.(ts|js)'],
globals: {
'ts-jest': {
tsconfig: 'tsconfig.json',
},
},
};