jest.config.js 282 B

1234567891011121314
  1. module.exports = {
  2. preset: 'ts-jest',
  3. testEnvironment: 'node',
  4. testRegex: '(/__tests__/.*|(\\.|/)(test|spec))\\.ts$',
  5. testTimeout: 20000,
  6. coverageThreshold: {
  7. global: {
  8. branches: 100,
  9. functions: 100,
  10. lines: 100,
  11. statements: 100,
  12. },
  13. },
  14. };