You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.7 KiB
JavaScript
60 lines
1.7 KiB
JavaScript
var path = require('path');
|
|
var webpack = require('webpack');
|
|
|
|
module.exports = function(config) {
|
|
config.set({
|
|
basePath: '',
|
|
frameworks: ['mocha', 'chai', 'sinon', 'sinon-chai'],
|
|
files: [
|
|
'test/test-main-integration.js',
|
|
{pattern: 'test/integration/**/*.js', included: false},
|
|
{pattern: 'test/fixtures/**/*.*', included: false}
|
|
],
|
|
preprocessors: {
|
|
'test/test-main-integration.js': ['webpack']
|
|
},
|
|
webpack: {
|
|
module: {
|
|
preLoaders: [
|
|
{
|
|
test: /\.js$/,
|
|
exclude: [
|
|
/node_modules/
|
|
],
|
|
loader: 'babel'
|
|
}
|
|
]
|
|
},
|
|
resolve: {
|
|
extensions: ['', '.js', '.jsx'],
|
|
root: path.resolve(__dirname),
|
|
alias: {
|
|
'input_stream$': 'src/input/input_stream',
|
|
'frame_grabber$': 'src/input/frame_grabber'
|
|
}
|
|
},
|
|
plugins: [
|
|
new webpack.DefinePlugin({
|
|
ENV: require(path.join(__dirname, './env/production'))
|
|
})
|
|
]
|
|
},
|
|
plugins: [
|
|
'karma-chrome-launcher',
|
|
'karma-mocha',
|
|
'karma-requirejs',
|
|
'karma-chai',
|
|
'karma-sinon',
|
|
'karma-sinon-chai',
|
|
require('karma-webpack')
|
|
],
|
|
reporters: ['progress'],
|
|
port: 9876,
|
|
colors: true,
|
|
logLevel: config.LOG_INFO,
|
|
autoWatch: true,
|
|
browsers: ['Chrome'],
|
|
singleRun: false
|
|
});
|
|
};
|