You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
395 B
32 lines
395 B
module.exports = function (config) {
|
|
config.set({
|
|
basePath: '',
|
|
|
|
frameworks: ['mocha'],
|
|
|
|
files: [
|
|
'*.js'
|
|
],
|
|
|
|
exclude: [],
|
|
|
|
reporters: ['progress'],
|
|
|
|
port: 9876,
|
|
|
|
colors: true,
|
|
|
|
logLevel: config.LOG_INFO,
|
|
|
|
autoWatch: false,
|
|
|
|
browsers: ['Chrome'],
|
|
|
|
singleRun: false,
|
|
|
|
plugins: [
|
|
require('../../'),
|
|
'karma-mocha'
|
|
]
|
|
})
|
|
}
|