Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / packages / colors / jest.config.js
blob51532dc13e97e115ecde66c34b1a7ebbf5c5fa44
1 module.exports = {
2     preset: 'ts-jest',
3     testEnvironment: 'node',
4     collectCoverageFrom: ['*.ts', '!tool/*', '!index.ts', '!*.config.ts', '!types.ts'],
5     coverageReporters: ['text-summary', 'json'],
6     reporters: ['default', ['jest-junit', { suiteNameTemplate: '{filepath}', outputName: 'test-report.xml' }]],
7     coverageThreshold: {
8         global: {
9             branches: 33,
10             functions: 43,
11             lines: 42,
12             statements: 41,
13         },
14     },