summaryrefslogtreecommitdiff
path: root/config/karma.config.js
blob: 59b95427dbc1386827ecefaa199c6b1712e39396 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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,
    browsers: ['PhantomJS'],
    frameworks: ['jasmine'],
    files: [
      { pattern: 'spec/javascripts/test_bundle.js', watched: false },
      { pattern: 'spec/javascripts/fixtures/**/*@(.json|.html|.html.raw)', included: false },
    ],
    preprocessors: {
      'spec/javascripts/**/*.js?(.es6)': ['webpack', 'sourcemap', 'coverage'],
    },
    reporters: ['progress', 'coverage'],
    webpack: webpackConfig,
    webpackMiddleware: { stats: 'errors-only' },
    coverageReporter: {
      dir: './coverage-javascript',
      reporters: [
        { type: 'html', subdir: 'default' },
        { type: 'text-summary' }
      ],
    }
  });
};