Skip to content

Commit

Permalink
Add coverage reporters to jest.config
Browse files Browse the repository at this point in the history
  • Loading branch information
dickwolff authored Dec 29, 2023
1 parent 4d0bf05 commit 8bb8812
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions jest.config.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
import type {Config} from '@jest/types';
import type { Config } from '@jest/types';

// Sync object
const config: Config.InitialOptions = {
verbose: true,
transform: {
'^.+\\.tsx?$': 'ts-jest'
}
'^.+\\.tsx?$': 'ts-jest'
},
coverageReporters: ['text-summary', 'cobertura']
};
export default config;

export default config;

0 comments on commit 8bb8812

Please sign in to comment.