Angular 11 单元测试代码覆盖率正在突破
Angular 11 Unit Test Code Coverage is Now Breaking
在升级到 Angular 11 之前,我 运行 通过以下命令使用代码覆盖率对我的单元进行测试:
ng test --project my-app --code-coverage true
当我将我的项目升级到 Angular 11 时,我仍然能够进行代码覆盖率测试,但我开始收到一条消息说“'karma-coverage-istanbul-reporter' 自版本 11 以来已弃用” .它要求我安装 karma-coverage 并更新 karma.conf.js。所以我按照它的要求做了。我通过这个命令安装了业力覆盖和业力:
npm install karma karma-coverage --save-dev
因此,我在我的 package.json 中看到 devDependencies 下的 karma 条目:
"karma": "^5.2.3",<br>
"karma-coverage": "^2.0.3"
我更新了我的 karma.conf.js 文件。以下是存在的,除了我的评论,一切都是原来的样子:
module.exports = function (config) {
config.set({
basePath: '',
frameworks: ['jasmine', '@angular-devkit/build-angular'],
plugins: [
require('karma-jasmine'),
require('karma-chrome-launcher'),
require('karma-jasmine-html-reporter'),
require('karma-coverage'), // NEWLY ADDED
// ORIGINALLY HERE NOW REMOVED require('karma-coverage-istanbul-reporter'),
require('@angular-devkit/build-angular/plugins/karma')
],
client: {
clearContext: false // leave Jasmine Spec Runner output visible in browser
},
reporters: ['progress', 'kjhtml', 'coverage'],
// coverageIstanbulReporter NO LONGER HERE
//coverageIstanbulReporter: {
// dir: require('path').join(__dirname, '../../coverage/my-app'),
// reports: ['html', 'lcovonly', 'text-summary'],
// fixWebpackSourcePaths: true
//},
// coverReporter NEWLY ADDED
coverageReporter: {
dir: 'build/reports/coverage',
reporters: [
{ type: 'html', subdir: 'report-html' },
{ type: 'lcov', subdir: 'report-lcov' }
]
},
// THE FOLLOWING REMAINED AS IS
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
singleRun: false,
restartOnFileChange: true
});
};
进行此更新后,发生了两件事,我不明白为什么。
当我 运行 我的正常代码覆盖命令时,我收到以下错误:“服务器在端口 9876 上启动失败:错误:必须安装 karma-coverage 才能 运行 代码覆盖率。”正如我的 package.json 所示,我确实安装了它,但由于某种原因我的项目无法识别它。此外,如果我将 karma-coverage-istanbul-reporter require 方法添加回我的 conf.js 文件,覆盖率工作正常,但我仍然收到该弃用消息。谁能向我解释为什么会出现此错误?
当我 运行 我的测试没有覆盖时,我现在收到多个以前从未收到过的警告,例如:“无法根据文件扩展名确定文件类型,默认为 js。
要消除警告,请在配置文件中为 C:/Angular/my-project/projects/my-app/src/app/app.component.spec.ts 指定一个有效类型。”我需要做什么来解决这个问题?
编辑: 我找到了答案。在 coverageReporter 对象中,您需要将 fixWebpackSourcePaths 属性 添加到 true:
coverageReporter: {
dir: 'build/reports/coverage',
reporters: [
{ type: 'html', subdir: 'report-html' },
{ type: 'lcov', subdir: 'report-lcov' }
],
fixWebpackSourcePaths: true
},
我的诀窍是从记者那里删除 'coverage'
。它应该只是:
reporters: ['progress', 'kjhtml'],
然后按预期创建了覆盖率报告,没有抛出奇怪的警告。
这好像是Angular的方法,看看karma.conf.js
generated by the ng new
schematics.
此外,我发现 reporters
必须有一个 subdir
字段:
不起作用
reporters: [
{ type: 'html' }
}
不起作用
reporters: [
{ type: 'html', subdir: '' }
}
作品:
reporters: [
{ type: 'html', subdir: 'report-html' }
}
在升级到 Angular 11 之前,我 运行 通过以下命令使用代码覆盖率对我的单元进行测试:
ng test --project my-app --code-coverage true
当我将我的项目升级到 Angular 11 时,我仍然能够进行代码覆盖率测试,但我开始收到一条消息说“'karma-coverage-istanbul-reporter' 自版本 11 以来已弃用” .它要求我安装 karma-coverage 并更新 karma.conf.js。所以我按照它的要求做了。我通过这个命令安装了业力覆盖和业力:
npm install karma karma-coverage --save-dev
因此,我在我的 package.json 中看到 devDependencies 下的 karma 条目:
"karma": "^5.2.3",<br>
"karma-coverage": "^2.0.3"
我更新了我的 karma.conf.js 文件。以下是存在的,除了我的评论,一切都是原来的样子:
module.exports = function (config) {
config.set({
basePath: '',
frameworks: ['jasmine', '@angular-devkit/build-angular'],
plugins: [
require('karma-jasmine'),
require('karma-chrome-launcher'),
require('karma-jasmine-html-reporter'),
require('karma-coverage'), // NEWLY ADDED
// ORIGINALLY HERE NOW REMOVED require('karma-coverage-istanbul-reporter'),
require('@angular-devkit/build-angular/plugins/karma')
],
client: {
clearContext: false // leave Jasmine Spec Runner output visible in browser
},
reporters: ['progress', 'kjhtml', 'coverage'],
// coverageIstanbulReporter NO LONGER HERE
//coverageIstanbulReporter: {
// dir: require('path').join(__dirname, '../../coverage/my-app'),
// reports: ['html', 'lcovonly', 'text-summary'],
// fixWebpackSourcePaths: true
//},
// coverReporter NEWLY ADDED
coverageReporter: {
dir: 'build/reports/coverage',
reporters: [
{ type: 'html', subdir: 'report-html' },
{ type: 'lcov', subdir: 'report-lcov' }
]
},
// THE FOLLOWING REMAINED AS IS
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
singleRun: false,
restartOnFileChange: true
});
};
进行此更新后,发生了两件事,我不明白为什么。
当我 运行 我的正常代码覆盖命令时,我收到以下错误:“服务器在端口 9876 上启动失败:错误:必须安装 karma-coverage 才能 运行 代码覆盖率。”正如我的 package.json 所示,我确实安装了它,但由于某种原因我的项目无法识别它。此外,如果我将 karma-coverage-istanbul-reporter require 方法添加回我的 conf.js 文件,覆盖率工作正常,但我仍然收到该弃用消息。谁能向我解释为什么会出现此错误?
当我 运行 我的测试没有覆盖时,我现在收到多个以前从未收到过的警告,例如:“无法根据文件扩展名确定文件类型,默认为 js。 要消除警告,请在配置文件中为 C:/Angular/my-project/projects/my-app/src/app/app.component.spec.ts 指定一个有效类型。”我需要做什么来解决这个问题?
编辑: 我找到了答案。在 coverageReporter 对象中,您需要将 fixWebpackSourcePaths 属性 添加到 true:
coverageReporter: {
dir: 'build/reports/coverage',
reporters: [
{ type: 'html', subdir: 'report-html' },
{ type: 'lcov', subdir: 'report-lcov' }
],
fixWebpackSourcePaths: true
},
我的诀窍是从记者那里删除 'coverage'
。它应该只是:
reporters: ['progress', 'kjhtml'],
然后按预期创建了覆盖率报告,没有抛出奇怪的警告。
这好像是Angular的方法,看看karma.conf.js
generated by the ng new
schematics.
此外,我发现 reporters
必须有一个 subdir
字段:
不起作用
reporters: [
{ type: 'html' }
}
不起作用
reporters: [
{ type: 'html', subdir: '' }
}
作品:
reporters: [
{ type: 'html', subdir: 'report-html' }
}