如何使用nyc完全删除lcov-report的部分?

问题描述 投票:0回答:1

*我正在使用@cypressode-coverage插件。

我试着只包含我想要的目录。

{
    "extends": "@istanbuljs/nyc-config-typescript",
    "all": true,
    "report-dir": "cypress-coverage",
    "reporter": ["text-summary", "lcov"],
    "include": ["src/**/*.js"]
}

但是这些其他的目录(它们是我的兄弟姐妹) src/),虽然它们显示的是00行和0%--一直显示在报表上。enter image description here

另外,我猜测他们没有被包括在计算中 因为他们是00行, 但有一些文件,我可以参考? 似乎很难找到。

code-coverage cypress lcov nyc
1个回答
0
投票

在我意识到所有的东西都是一个目录了之后,这让我工作了。

{
    "extends": "@istanbuljs/nyc-config-typescript",
    "all": true,
    "report-dir": "cypress-coverage",
    "reporter": ["text-summary", "lcov"],
    "include": ["**/src"],
    "exclude": ["**/*.spec.ts"]
}
© www.soinside.com 2019 - 2024. All rights reserved.