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'], reporters: ['mocha'],
browserDisconnectTimeout: 5000,
plugins: [ plugins: [
require('./karma-webext-launcher'), require('./karma-webext-launcher'),
@ -42,5 +41,11 @@ module.exports = function (config) {
'karma-webpack', 'karma-webpack',
'karma-mocha-reporter', 'karma-mocha-reporter',
], ],
client: {
mocha: {
timeout: 5000
}
}
}) })
} }