业力覆盖无法显示正确的结果

Karma coverage fails to show correct results

我需要一些关于 Karma 和 browserify 覆盖范围的帮助。我在这里创建了一个带有测试的回购 运行:

https://github.com/jotaoncode/web-istanbul

我的报道结果如下: Results of coverage

测试仅在函数索引上运行。但如您所见,结果是 100%,并且仅用绿色标记文件的第一行。

我见过 istanbul 正确显示覆盖率值的情况,我已经更改了测试和源但什么也没有。

我也有这个业力配置:

module.exports = function(config) {
  config.set({
    //logLevel: 'LOG_DEBUG',

    reporters: ['spec', 'coverage'],

    // Continuous Integration mode
    // if true, Karma captures browsers, runs the tests and exits
    singleRun : true,

    autoWatch : false,

    // base path that will be used to resolve all patterns (eg. files, exclude)
    basePath: '',

    port: 9876,

    // frameworks to use
    // available frameworks: https://npmjs.org/browse/keyword/karma-adapter
    frameworks: [
      'mocha',
      'browserify'
    ],

    files: [
      'src/**/*.js',
      'test/*.js'
    ],

    // list of files to exclude
    exclude: [],

    preprocessors: {
      'src/**/*.js': ['browserify', 'coverage'],
      'test/**/*.js': ['browserify']

    },

    coverageReporter: {
      reporters: [
        { type: 'html' },
        { type: 'text' },
        { type: 'lcovonly' }
      ],
      instrumenterOptions: {
        istanbul: {
          noCompact: true
        }
      },
      instrumenter: {
        'test/**/*.js': 'istanbul'
      },
      includeAllSources: true
    },


    // enable / disable colors in the output (reporters and logs)
    colors: true,

    // start these browsers
    // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
    browsers: [
      'PhantomJS2'
    ]

  });
};

如果您 运行 测试,您会发现它实际上工作正常,但覆盖率报告不正确。

经过一些研究后,我发现这个问题已解决,如本期评论所述:

https://github.com/karma-runner/karma-coverage/issues/16

我使用了 browserify-istanbul,现在覆盖率报告工作正常:)