cmake-action/jest.config.json
2023-12-11 19:31:59 +07:00

16 lines
288 B
JSON

{
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.mjs$": "<rootDir>/dist/$1.mjs"
},
"testMatch": ["**/*.test.js"]
}