12 lines
262 B
JavaScript
Raw Normal View History

2024-01-29 09:26:07 +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']
}