jest.config.js 194 B

1234567891011
  1. module.exports = {
  2. clearMocks: true,
  3. moduleFileExtensions: ['js', 'ts'],
  4. testMatch: ['**/*.test.ts'],
  5. transform: {
  6. '^.+\\.ts$': 'ts-jest'
  7. },
  8. verbose: true,
  9. maxConcurrency: 1
  10. }