jest.config.js 221 B

123456789
  1. /** @type {import('jest').Config} */
  2. module.exports = {
  3. preset: 'ts-jest',
  4. testEnvironment: 'node',
  5. roots: ['<rootDir>/tests', '<rootDir>/src'],
  6. testMatch: ['**/*.spec.ts', '**/*.test.ts'],
  7. clearMocks: true
  8. };