UNPKG

170 BJavaScriptView Raw
1module.exports = function(config) {
2 // apply base config
3 require('./karma.conf.js')(config);
4
5 config.set({
6 browsers: ['Chrome'],
7 singleRun: false,
8 });
9};