12 lines
262 B
JavaScript
Raw Permalink Normal View History

2025-02-28 19:43:11 +08:00
/*
* For a detailed explanation regarding each configuration property, visit:
* https://jestjs.io/docs/en/configuration.html
*/
module.exports = {
collectCoverage: true,
collectCoverageFrom: [
'src/**/*'
],
reporters: ['jest-standard-reporter']
}