You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

35 lines
622 B

module.exports = function (config) {
var webpackConfig = require('./webpack.config.js');
config.set({
basePath: '',
frameworks: ['mocha'],
files: ['test/**/*\.test\.js'],
preprocessors: {
'test/**/*\.test\.js': [ 'webpack' ]
},
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']
})
}