mirror of
https://gitee.com/vuejs/vue.git
synced 2024-11-30 02:57:43 +08:00
10 lines
222 B
JavaScript
10 lines
222 B
JavaScript
var base = require('./karma.base.config.js')
|
|
|
|
module.exports = function (config) {
|
|
config.set(Object.assign(base, {
|
|
browsers: ['Chrome', 'Firefox', 'Safari'],
|
|
reporters: ['progress'],
|
|
singleRun: true
|
|
}))
|
|
}
|