A fork of https://github.com/ueokande/vim-vixen
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.
43 lines
831 B
43 lines
831 B
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'] |
|
}) |
|
}
|
|
|