Skip to content

Latest commit

 

History

History
55 lines (46 loc) · 1.24 KB

karma.md

File metadata and controls

55 lines (46 loc) · 1.24 KB

Using enzyme with Karma

Karma is a popular test runner that can run tests in browser environments. enzyme is compatible with Karma, but often requires a little bit of configuration.

This configuration largely depends on which plugins you are using to bundle your JavaScript code. In the case of Browserify or Webpack, see the below documentation in order to get these up and running.

enzyme + Karma + Webpack

See the webpack guide.

/* karma.conf.js */
module.exports = function karmaConfig(config) {
  config.set({
    // ...
    webpack: { // kind of a copy of your webpack config
      devtool: 'inline-source-map', // just do inline source maps instead of the default
      module: {
        loaders: [{
          test: /\.js$/,
          exclude: /\/node_modules\//,
          loader: 'babel',
          query: {
            presets: ['airbnb'],
          },
        }],
      },
    },
    // ...
  });
};

enzyme + Karma + Browserify

See the browserify guide.

/* karma.conf.js */
module.exports = function karmaConfig(config) {
  config.set({
    // ...
    browserify: {
      debug: true,
      transform: [
        ['babelify', { presets: ['airbnb'] }],
      ],
    },
    // ...
  });
};