set mocha timeout

This commit is contained in:
Shin'ya Ueoka 2018-03-11 10:07:37 +09:00
parent 4f483a19cb
commit 861f2a80a0

View file

@ -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
}
}
})
}