gpt4 book ai didi

Angular 单元测试 : can't change the reporter of karma

转载 作者:行者123 更新时间:2023-12-01 12:20:44 25 4
gpt4 key购买 nike

我正在尝试将 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 中我没有提到 Istanbul 尔:

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 来确定。

最佳答案

所以我在 Angular CLI 项目上写了一个问题,他们告诉我使用 code coverage 选项会自动添加 istanbul 包,无论您设置了什么。我现在使用的命令是

ng test --reporters=junit --watch=false || ECHO

关于 Angular 单元测试 : can't change the reporter of karma,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44304530/

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