【发布时间】:2017-10-03 20:56:00
【问题描述】:
我正在使用 Karma 编写 JS 单元测试用例,并使用 Istanbul 来获取覆盖率报告。 我的 karma.conf.js 文件如下 -
// karma.conf.js
module.exports = function(config) {
config.set({
files: [
'test/**/*.js'
],
// coverage reporter generates the coverage
reporters: ['progress', 'coverage'],
preprocessors: {
// source files, that you wanna generate coverage for
// do not include tests or libraries
// (these files will be instrumented by Istanbul)
'test/**/*.js': ['coverage']
},
// optionally, configure the reporter
coverageReporter: {
type : 'html',
dir : 'coverage/'
}
});
};
在coverageReporter 中,我想使用类型“html”和“lcov”。为此,我将其更改如下--
报道记者:{ 类型:'html','lcov', 目录:'覆盖/' }
然后我执行了karma start karma.conf.js,但遇到了异常——
C:\abc\npm-1.4.9>karma start karma.conf.js
05 05 2017 16:57:00.369:ERROR [config]: Invalid config file!
C:\abc\npm-1.4.9\karma.conf.js:45
type : 'html','lcov',
^
SyntaxError: Unexpected token ,
at createScript (vm.js:53:10)
at Object.runInThisContext (vm.js:95:10)
at Module._compile (module.js:543:28)
at Object.Module._extensions..js (module.js:580:10)
at Module.load (module.js:488:32)
at tryModuleLoad (module.js:447:12)
at Function.Module._load (module.js:439:3)
at Module.require (module.js:498:17)
at require (internal/module.js:20:19)
非常感谢任何帮助。
【问题讨论】:
标签: javascript karma-runner code-coverage istanbul