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