/** * Jest configuration for the Daily Notification plugin */ module.exports = { preset: 'ts-jest', testEnvironment: 'node', roots: ['/tests'], testMatch: ['**/*.test.ts'], transform: { '^.+\\.tsx?$': 'ts-jest' }, moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'], collectCoverage: true, coverageDirectory: 'coverage', coverageReporters: ['text', 'lcov'], coverageThreshold: { global: { branches: 80, functions: 80, lines: 80, statements: 80 } }, setupFiles: ['/tests/setup.ts'] };