Files
RayLab-Core/jest.config.cjs
T
2026-08-02 17:44:50 +07:00

13 lines
324 B
JavaScript

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