gpt4 book ai didi

javascript - grunt 模板 jasmine istanbul 没有生成覆盖率报告

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:29:25 25 4
gpt4 key购买 nike

我正在使用 grunt-template-jasmine-istanbul 和 grunt-template-jasmine-requirejs。当我运行测试覆盖模块时,我所有的测试用例都成功运行但没有生成覆盖。

jasmine: {
coverage: {
src: [...],
options: {
specs: '...',
vendors: [...],
template: require('grunt-template-jasmine-istanbul'),
templateOptions: {
coverage: 'bin/coverage/coverage.json',
report: 'bin/coverage',
template: require('grunt-template-jasmine-requirejs'),
templateOptions: {
requireConfig: {
baseUrl: '...',
}
}
}
}
}
}

最佳答案

我们在设置中遇到了确切的问题。这个问题只是因为 src 路径中的路径不正确。因此,请确保您已正确配置路径。

下面是对我们有用的示例代码。问题应该恰好出在您的源路径配置中。

jasmine : {
coverage : {
src : [
'web/js/sad/service/common/model/**/*.js' ],
options : {
specs : [ 'tests/**/*.js' ],
template : require('grunt-template-jasmine-istanbul'),
vendor : [ '../3rdParty/extjs-4.1.0/*.js',
'web/js/common/controller/**/*.js' ],
templateOptions : {
coverage : 'bin/coverage/coverage.json',
report : 'bin/coverage',
thresholds : {
lines : 5,
statements : 5,
branches : 1,
functions : 1
}
}
}
}
}

关于javascript - grunt 模板 jasmine istanbul 没有生成覆盖率报告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34388269/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com