如何让Karify,Babel和Coverage在Karma中一起工作?

时间:2016-01-21 04:00:14

标签: karma-runner babeljs code-coverage browserify isparta

我越来越厌倦试图让节点库一起正常工作,但这是工作的一部分,所以这里就是这样。

我有一个用于浏览器的ES6应用程序。我对我的文件进行了一系列单元测试,当我的应用程序是用ES5编写的时候。我使用Browserify处理导入/导出模块并捆绑我的发行版。这在浏览器中运行应用程序时工作正常。我可以成功浏览源文件和规范文件并运行测试,测试通过。我非常接近这项工作。

唯一的问题是报道。我最接近的是显示karma-browserify生成的文件的覆盖范围,每个文件都是这样的:

require('/absolute/path/to/the/corresponding/file.js');

并且所有文件的覆盖率显然为100%,因为每个文件只有一行。

这是我的karma.conf.js:

import babelify from 'babelify';
import isparta  from 'isparta';
import paths    from './paths';

var normalizeBrowserName = (browser) => browser.toLowerCase().split(/[ /-]/)[0];

export default function(config) {
    config.set({
        basePath: '..',
        browsers: ['PhantomJS'],
        frameworks: ['browserify', 'jasmine'],
        files: paths.test.files,
        preprocessors: {
            'app/**/*.js': ['browserify', 'sourcemap', 'coverage'],
            [paths.test.testFiles]: ['babel'],
        },
        plugins: [
            'karma-babel-preprocessor',
            'karma-browserify',
            'karma-coverage',
            'karma-jasmine',
            'karma-junit-reporter',
            'karma-phantomjs-launcher',
            'karma-sourcemap-loader',
        ],
        autoWatch: false,
        colors: false,
        loggers: [{ type: 'console' }],
        port: 9876,
        reporters: ['progress', 'dots', 'junit', 'coverage'],
        junitReporter: {
            outputFile: paths.test.resultsOut,
            suite: '',
        },
        browserify: {
            debug: true,
            noParse: paths.js.noparse(),
            configure: (bundle) => {
                bundle.once('prebundle', () => bundle.transform(babelify.configure({ ignore: 'lib/!**!/!*' })));
            },
        },
        coverageReporter: {
            instrumenters: { isparta },
            instrumenter: {
                [paths.test.cover]: 'isparta',
            },
            reporters: [
                { type: 'text', },
                { type: 'html', dir: paths.test.coverageOut, subdir: normalizeBrowserName },
                { type: 'cobertura', dir: paths.test.coverageOut, subdir: '.', file: 'coverage.xml' },
            ],
        },
        logLevel: config.LOG_DEBUG,
    });
};

我真的不知道这些库是如何工作的,所以我不知道从哪里开始调试它。我知道预处理器的排序很重要,因此Browserify在源文件上运行,将生成的链接文件提供给源地图生成器,然后源地图生成器将生成的内容输入到karma-coverage中。但是Browserify和处理覆盖范围之间的沟通有些失落。 Isparta(在幕后使用istanbul)不知道browserify正在运行,我不知道它看到了什么。

如果有任何人在测试具有适当代码覆盖率的模块化ES6方面有任何经验,请告诉我我是否在正确的轨道上或者我是否应该尝试其他方法。

2 个答案:

答案 0 :(得分:5)

这是适合我的配置,请注意我使用的是browserify-istanbul而不是isparata。

var istanbul = require('browserify-istanbul');

module.exports = function(config) {
    config.set({
        basePath: '',
        frameworks: ['browserify', 'mocha'],
        files: [
          'test/**/*Spec.js'
        ],
        exclude: [
          '**/*.sw?'
        ],
        preprocessors: {
          'test/**/*Spec.js': ['browserify', 'coverage']
        },
        browserify: {
          debug: true,
          transform: [
            ['babelify', {
              ignore: /node_modules/
            }],
            istanbul({
              ignore: ['test/**', '**/node_modules/**']
            })
          ],
          extensions: ['.jsx']
        },

        babelPreprocessor: {
          options: {
            sourceMap: 'inline'
          },
           sourceFileName: function(file) {
            return file.originalPath;
          }
        },
        coverageReporter: {
          dir: 'coverage/',
          reporters: [
            { type: 'text-summary' }
          ]
        },
        browserNoActivityTimeout: 180000,
        reporters: ['coverage', 'progress'],
        port: 9876,
        colors: true,
        logLevel: config.LOG_INFO,
        autoWatch: true,
        browsers: ['Chrome'],
        singleRun: false
    });
};

工作是一件巨大的痛苦。

希望有所帮助

答案 1 :(得分:2)

HOW TO:Karma + Babel + React + Browserify + Istanbul

我认为我知道了。

如果我不这样做,请告诉我gus+overflow@mythril.co

不确定以前的答案是否与使用jasmine而不是mocha有关但是我使用了这些设置。

必需的软件包:除了明显的(React,Karma,Jasmine,Browserify)

isparta             - an Istanbul instrumenter for ES6
browserify-istanbul - a browserify transform
babelify            - another browserify transform
babel               - JS compiler
babel-preset-2015   - ES6 compile preset
babel-preset-react  - React compile preset

在根目录中创建.babelrc文件。 关于在工具中放置babel选项的位置我很困惑,但是大多数(和这些)babel工具寻找.babelrc

{
  "presets": ["es2015", "react"],
  "sourceMap": "inline"
}

<强> karma.config.js:

const isparta = require('isparta');
const istanbul = require('browserify-istanbul');

module.exports = function (config) {
  config.set({

    basePath: '',

    browsers: ['Firefox', 'Chrome', 'PhantomJS', 'Safari'],

    captureConsole: true,

    clearContext: true,

    colors: true,

    files: [

      // you need this for Phantom
      'node_modules/phantomjs-polyfill/bind-polyfill.js',

      // import any third party libs, we bundle them in another gulp task
      './build/libs/vendor-bundle.js',

      // glob for spec files
      '__PATH_TO_SPEC_FILES_/*.spec.js'
    ],

    frameworks: ['jasmine', 'browserify'],

    logLevel: config.LOG_INFO,

    preprocessors: {

      // I had to NOT include coverage, the browserify transform will handle it
      '__PATH_TO_SPEC_FILES_/*.spec.js': 'browserify'
    },

    port: 9876,

    reporters: ['progress', 'coverage'],

    browserify: {

      // we still use jQuery for some things :(
      // I don't think most people will need this configure section
      configure: function (bundle) {
        bundle.on('prebundle', function () {
          bundle.external(['jquery']);
        });
      },

      transform: [

        // this will transform your ES6 and/or JSX
        ['babelify'],

        // (I think) returns files readable by the reporters
        istanbul({
          instrumenter: isparta, // <--module capable of reading babelified code 
          ignore: ['**/node_modules/**', '**/client-libs/**']
        })
      ],

      // our spec files use jsx and so .js will need to be compiled too
      extensions: ['.js', '.jsx'],

      // paths that we can `require()` from
      paths: [
        './node_modules',
        './client-libs',
        './universal'
      ],

      debug: true
    },

    coverageReporter: {
      reporters: [
        { type: 'html', dir: 'coverage/Client' },
        { type: 'text-summary' }
      ]
    }
  });
};