Jest,Typescript,ts-jest:覆盖范围略有不正确

时间:2016-12-16 16:20:20

标签: node.js typescript jestjs

我正在使用TypeScript,Jest和ts-jest NPM模块来编写项目。

当我运行测试时,我确实获得了一些覆盖率,但HTML报告不太正确:

Code coverage issues

此外,有些功能被标记为未经测试,即使它们肯定被调用。

我的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"
    ]
  }
}

我的配置有问题吗?

1 个答案:

答案 0 :(得分:5)

<强>更新

从jest @ 20开始,您可以传递mapCoverage选项并使用coverage/lcov-report/index.html文件。

<强> OLD

我也一直在努力解决这个问题,但后来我注意到that line

长篇短篇报道报道转到coverage/remapped/html/index.html档。