set mocha timeout
This commit is contained in:
parent
4f483a19cb
commit
861f2a80a0
1 changed files with 6 additions and 1 deletions
|
@ -34,7 +34,6 @@ module.exports = function (config) {
|
|||
},
|
||||
|
||||
reporters: ['mocha'],
|
||||
browserDisconnectTimeout: 5000,
|
||||
|
||||
plugins: [
|
||||
require('./karma-webext-launcher'),
|
||||
|
@ -42,5 +41,11 @@ module.exports = function (config) {
|
|||
'karma-webpack',
|
||||
'karma-mocha-reporter',
|
||||
],
|
||||
|
||||
client: {
|
||||
mocha: {
|
||||
timeout: 5000
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
|
|
Reference in a new issue