vue/build/karma.base.config.js
2015-11-18 15:01:05 -05:00

27 lines
505 B
JavaScript

// shared config for all unit tests
module.exports = {
frameworks: ['jasmine'],
files: [
'../test/unit/lib/jquery.js',
'../test/unit/specs/index.js'
],
preprocessors: {
'../test/unit/specs/index.js': ['webpack']
},
webpack: {
module: {
loaders: [
{
test: /\.js$/,
exclude: /test|node_modules/,
loader: 'babel?optional[]=runtime&loose=all'
}
]
}
},
webpackMiddleware: {
noInfo: true
},
singleRun: true
}