mirror of
https://github.com/sakitam-fdd/maptalks.plot.git
synced 2025-12-08 20:35:49 +00:00
17 lines
438 B
JavaScript
17 lines
438 B
JavaScript
/**
|
|
* Created by FDD on 2017/11/6.
|
|
* @desc 单元测试
|
|
*/
|
|
|
|
const base = require('./karma.base.config.js')
|
|
module.exports = function (config) {
|
|
config.set(Object.assign(base, {
|
|
browsers: ['Chrome'],
|
|
reporters: ['mocha'],
|
|
// level of logging
|
|
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
|
|
logLevel: config.LOG_INFO,
|
|
singleRun: true
|
|
}))
|
|
}
|