【发布时间】:2017-11-02 10:11:51
【问题描述】:
我正在尝试将 JUnit 报告器与 karma 一起使用。
当我启动时
$ ng test --watch=false --code-coverage
它总是输出我
10% building modules 1/1 modules 0 active01 06 2017 11:57:51.797:ERROR
[reporter]: Can not load reporter "coverage-istanbul", it is not registered!
问题是,在我的karma.conf.json 中我没有提到伊斯坦布尔:
module.exports = function (config) {
config.set({
basePath: '',
frameworks: ['jasmine', '@angular/cli'],
plugins: [
require('karma-jasmine'),
// require('karma-chrome-launcher'),
require('karma-phantomjs-launcher'),
require('karma-junit-reporter'),
require('karma-mocha-reporter'),
require('@angular/cli/plugins/karma')
],
files: [
{ pattern: './src/test.ts', watched: false }
],
preprocessors: {
'./src/test.ts': ['@angular/cli']
},
mime: {
'text/x-typescript': ['ts', 'tsx']
},
junitReporter: {
outputDir: 'coverage', // results will be saved as $outputDir/$browserName.xml
useBrowserName: false, // add browser name to report and classes names
outputFile: 'test-report.xml', // if included, results will be saved as $outputDir/$browserName/$outputFile
},
angularCli: {
config: './angular-cli.json',
environment: 'dev'
},
reporters: config.angularCli && config.angularCli.codeCoverage ?
['mocha', 'junit'] :
['mocha'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: [
'PhantomJS',
// 'Chrome'
],
singleRun: false
});
};
你知道它可能来自哪里吗?
我还在我的package.json 文件中删除了所有与伊斯坦布尔相关的包,我还使用了npm prune 以确保安全。
【问题讨论】:
标签: angular unit-testing karma-jasmine karma-coverage