此问题曾被问过,但所有答案似乎都是过时的,不会导致完整的代码覆盖范围,包括对没有规范文件的文件的覆盖范围。
当我运行命令ng-test --code-coverage
时,我的结果显示检查的源代码比实际少得多,因为它正在跳过没有匹配规范文件的文件。我试图以几种方式解决此问题,包括创建一个app.module.spec文件并将app.module导入其中,这增加了报告的经过测试的代码行,但是在向深度嵌套的模块中添加了没有测试的新组件之后,数字没有变化。
这是我的业力配置:
// Karma configuration file, see link for more information
// https://karma-runner.github.io/1.0/config/configuration-file.html
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-mocha-reporter'),
require('karma-coverage-istanbul-reporter'),
require('@angular-devkit/build-angular/plugins/karma')
],
client: {
clearContext: false // leave Jasmine Spec Runner output visible in browser
},
coverageIstanbulReporter: {
dir: require('path').join(__dirname, '../coverage'),
reports: ['html', 'lcovonly', 'text-summary'],
fixWebpackSourcePaths: true,
thresholds: {
statements: 80,
lines: 80,
branches: 80,
functions: 80
}
},
mochaReporter: {
maxLogLines: 4
},
reporters: ['progress', 'mocha', 'kjhtml'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
singleRun: false
});
};
这是我的tests.ts文件
// This file is required by karma.conf.js and loads recursively all the .spec and framework files
import 'zone.js/dist/zone-testing';
import { getTestBed } from '@angular/core/testing';
import {
BrowserDynamicTestingModule,
platformBrowserDynamicTesting
} from '@angular/platform-browser-dynamic/testing';
declare const require: any;
// First, initialize the Angular testing environment.
getTestBed().initTestEnvironment(
BrowserDynamicTestingModule,
platformBrowserDynamicTesting()
);
// Then we find all the tests.
const context = require.context('./', true, /\.spec\.ts$/);
// And load the modules.
context.keys().map(context);
这是我的tsconfig.spec.json文件:
{
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/spec",
"types": [
"jasmine",
"node"
]
},
"files": [
"test.ts",
"polyfills.ts"
],
"include": [
"**/*.spec.ts",
"**/*.d.ts"
]
}
答案 0 :(得分:2)
我刚刚创建了业力插件,该插件将项目中的所有文件添加到coverage统计信息-https://github.com/kopach/karma-sabarivka-reporter。
要使用它->安装npm install --save-dev karma-sabarivka-reporter
并像这样更新karma.conf.js
:
reporters: [
// ...
'sabarivka'
// ...
],
coverageReporter: {
include: 'src/**/!(*.spec|*.module|environment*).ts', // glob patter which matchs all the files you want to be included into the coverage result
exclude: 'src/main.ts',
// ...
},
这应该可以解决您的问题,而无需创建“空”规格文件,而只需将源代码文件包括在覆盖率报告中即可。
答案 1 :(得分:0)
我最终决定编写一个原理图,该原理图使用绝对的基本测试实现来生成缺少的规范文件-刚好足以更新组件和服务。现在我的代码覆盖率报告看起来正确。