UNPKG

246 BJavaScriptView Raw
1module.exports = {
2 preset: 'ts-jest',
3 globals: {
4 'ts-jest': {
5 tsconfig: 'tsconfig.jest.json',
6 },
7 },
8 moduleFileExtensions: ['ts', 'js'],
9 testRegex: '(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$',
10 testEnvironment: 'node',
11}