我想用業力來使用JUnit記者。角度單元測試:不能改變業力記者
當我啓動
$ 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
文件中引用istanbul的包,我也用npm prune
來確定。