5

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

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

我的报道结果如下: 报道结果

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

我见过伊斯坦布尔正确显示覆盖率值的情况,我已经更改了测试和源,但什么也没改变。

我也有这个业力配置:

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'
    ]

  });
};

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

4

1 回答 1

1

在做了一些研究后,我发现这已解决,如本期所述:

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

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

在此处输入图像描述

于 2015-11-01T18:30:48.213 回答