我正在使用TypeScript,Jest和ts-jest
NPM模块来编写项目。
当我运行测试时,我确实获得了一些覆盖率,但HTML报告不太正确:
此外,有些功能被标记为未经测试,即使它们肯定被调用。
我的package.json设置如下:
{
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testResultsProcessor": "<rootDir>/node_modules/ts-jest/coverageprocessor.js",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
"coverageReporters": [
"html",
"json"
]
}
}
我的配置有问题吗?
答案 0 :(得分:5)
<强>更新强>
从jest @ 20开始,您可以传递mapCoverage选项并使用coverage/lcov-report/index.html
文件。
<强> OLD 强>
我也一直在努力解决这个问题,但后来我注意到that line。
长篇短篇报道报道转到coverage/remapped/html/index.html
档。