mirror of
https://github.com/aljazceru/satshkd-vercel.git
synced 2025-12-17 13:14:25 +01:00
20 lines
328 B
JavaScript
20 lines
328 B
JavaScript
module.exports = {
|
|
restoreMocks: true,
|
|
clearMocks: true,
|
|
collectCoverageFrom: [
|
|
"lib/**/*.js",
|
|
"index.js",
|
|
"!**/node_modules/**",
|
|
],
|
|
coverageDirectory: "coverage",
|
|
coverageThreshold: {
|
|
global: {
|
|
branches: 100,
|
|
functions: 100,
|
|
lines: 100,
|
|
statements: 100,
|
|
},
|
|
},
|
|
testRegex: /\.test\.jsx?/.source,
|
|
};
|