14 lines
340 B
JavaScript
14 lines
340 B
JavaScript
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
testMatch: ['**/tests/**/*.spec.ts', '**/?(*.)+(spec|test).[tj]s?(x)'],
|
|
testPathIgnorePatterns: ['/tests/api/', '/tests/integration/'],
|
|
moduleFileExtensions: ['ts', 'js', 'json', 'node'],
|
|
globals: {
|
|
'ts-jest': {
|
|
tsconfig: 'tsconfig.json',
|
|
},
|
|
},
|
|
};
|
|
|