aboutsummaryrefslogtreecommitdiff
path: root/karma.conf.js
blob: 46a1774f8e8344aef753d56cced32437898cc888 (plain) (blame)
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
30
31
32
33
34
35
36
37
38
39
40
41
module.exports = function (config) {

  var webpackConfig = require('./webpack.config.js');

  config.set({
    basePath: '',
    frameworks: ['mocha'],
    files: [
      'test/**/*.test.js',
      'test/**/*.test.jsx',
      'test/**/*.html'
    ],

    preprocessors: {
      'test/**/*.test.js': [ 'webpack' ],
      'test/**/*.test.jsx': [ 'webpack' ],
      'test/**/*.html': ['html2js']
    },

    reporters: ['progress'],

    port: 9876,
    colors: true,
    logLevel: config.LOG_INFO,
    browsers: ['Firefox'],

    singleRun: true,

    webpack: {
      devtool: 'inline-source-map',
      resolve: webpackConfig.resolve,
      module: webpackConfig.module
    },

    webpackMiddleware: {
      noInfo: true
    },

    reporters: ['mocha']
  })
}