32 lines
671 B
Vue
32 lines
671 B
Vue
|
const webpackConfig = require('../../build/webpack.test');
|
||
|
|
||
|
module.exports = function(config) {
|
||
|
const configuration = {
|
||
|
browsers: ['ChromeHeadless'],
|
||
|
frameworks: ['mocha', 'sinon-chai'],
|
||
|
reporters: ['spec', 'coverage'],
|
||
|
files: ['./index.js'],
|
||
|
preprocessors: {
|
||
|
'./index.js': ['webpack', 'sourcemap']
|
||
|
},
|
||
|
webpack: webpackConfig,
|
||
|
webpackMiddleware: {
|
||
|
noInfo: true
|
||
|
},
|
||
|
coverageReporter: {
|
||
|
dir: './coverage',
|
||
|
reporters: [
|
||
|
{ type: 'lcov', subdir: '.' },
|
||
|
{ type: 'text-summary' }
|
||
|
]
|
||
|
},
|
||
|
client: {
|
||
|
mocha: {
|
||
|
timeout: 4000
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
|
||
|
config.set(configuration);
|
||
|
};
|