summaryrefslogtreecommitdiff
path: root/config/karma.config.js
blob: 96d33490b37fd1cc96dd27d30452cd2444973f70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
var path = require('path');
var webpackConfig = require('./webpack.config.js');
var ROOT_PATH = path.resolve(__dirname, '..');

// Karma configuration
module.exports = function(config) {
  config.set({
    basePath: ROOT_PATH,
    frameworks: ['jasmine'],
    files: [
      'spec/javascripts/spec_helper.js',
      'spec/javascripts/**/*_spec.js?(.es6)',
      { pattern: 'spec/javascripts/fixtures/**/*@(.json|.html|.html.raw)', included: false },
    ],
    preprocessors: {
      'spec/javascripts/**/*.js?(.es6)': ['webpack'],
    },
    webpack: webpackConfig,
    webpackMiddleware: { stats: 'errors-only' },
  });
};