mirror of
https://gitee.com/vuejs/vue.git
synced 2024-12-02 20:17:52 +08:00
9 lines
180 B
JavaScript
9 lines
180 B
JavaScript
|
var base = require('./karma.base.config.js')
|
||
|
|
||
|
module.exports = function (config) {
|
||
|
config.set(Object.assign(base, {
|
||
|
browsers: ['Chrome'],
|
||
|
reporters: ['progress']
|
||
|
}))
|
||
|
}
|