module.exports = { preset: 'jest-preset-angular', passWithNoTests: true, setupFilesAfterEnv: ['/setup-jest.ts'], globalSetup: 'jest-preset-angular/global-setup', testMatch: ['**/*.spec.ts'], collectCoverageFrom: [ 'src/**/*.ts', '!src/**/*.spec.ts', '!src/**/*.d.ts', '!src/main.ts', '!src/main.server.ts', ], coverageThreshold: { global: { branches: 80, functions: 80, lines: 80, statements: 80, }, }, };