1234567891011121314 |
- module.exports = {
- preset: 'ts-jest',
- testEnvironment: 'node',
- testRegex: '(/__tests__/.*|(\\.|/)(test|spec))\\.ts$',
- testTimeout: 20000,
- coverageThreshold: {
- global: {
- branches: 100,
- functions: 100,
- lines: 100,
- statements: 100,
- },
- },
- };
|