请问有人知道我该如何解决这个问题吗?我的 test:coverage 定义如下。
scripts{
"test:coverage": "babel-node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha ./src/_utils/__tests__/*.js"
}
当我跑步时
npm run test:coverage
我的摩卡咖啡运行良好,其他一切正常。但我在伊斯坦布尔的报道最后返回了标题中的信息。此外,我的覆盖文件夹仍然是空的。在线阅读后,我确信我必须添加.istanbul.yml
文件。然后我继续并在下面添加它
verbose: false
instrumentation:
root: ./node_modules/.bin/istanbul
default-excludes: true
excludes: []
embed-source: false
variable: __coverage__
compact: true
preserve-comments: false
complete-copy: false
save-baseline: false
baseline-file: ./coverage/coverage-baseline.json
reporting:
print: summary
reports:
- lcov
dir: ./coverage
watermarks:
statements: [50, 80]
lines: [50, 80]
functions: [50, 80]
branches: [50, 80]
hooks:
hook-run-in-context: false
post-require-hook: null
在我再次运行我的 test:coverage 之后,之前的 istanbul 错误消失了。但是,标题中的不覆盖消息仍然存在,更多覆盖文件夹仍然是空的。请问我哪里错了?任何帮助,将不胜感激。