在 Angular 7 应用程序中,如何确保没有匹配规范文件的文件的代码覆盖率?

How do you ensure code coverage for files with no matching spec files in an Angular 7 app?

之前有人问过这个问题,但所有答案似乎都已过时并且不会导致完整的代码覆盖包括对没有规范文件的文件的覆盖

当我 运行 命令 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"
  ]
}

我最终决定编写一个原理图,生成带有绝对基本测试实现的缺失规范文件——刚好足以用于新的组件和服务。现在我的代码覆盖率报告看起来正确了。

我刚刚创建了 karma 插件,它将项目中的所有文件添加到覆盖率统计中 - 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',
    // ...
},

这应该可以解决您的问题,而无需创建 "empty" 规范文件来将源代码文件包含到覆盖率报告中。