配置 remap-istanbul 以包含所有源文件

configure remap-istanbul to include all source files

我正在使用 Angular 2 和 TS 配置在 Ionic 2 上开发的应用程序,以生成为我的测试文件生成的代码覆盖率报告。 我正在使用 Jasmine 、 Karma 和 remap-istanbul 进行单元测试并生成覆盖率报告。

参考这个精彩post:twofuckingdevelopers.com/2016/01/testing-angular-2-with-karma-and-jasmine/

但是,我无法列出没有为它们编写规范文件的文件。有没有办法在伊斯坦布尔报告中包含相同内容并相应地生成整体覆盖范围。

谢谢!!!

在您的 Karma 配置文件中设置以下选项:

coverageReporter: {
      includeAllSources: true
}