diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-03-11 10:07:37 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-03-11 10:07:37 +0900 |
commit | 861f2a80a0f1fb0577d8c55fa1402b848979beb3 (patch) | |
tree | 50a483845623cb4f9d63fd8f09bfa6925bb870a6 /e2e | |
parent | 4f483a19cb5eec9ab205d9e8cffa08d177d0478b (diff) |
set mocha timeout
Diffstat (limited to 'e2e')
-rw-r--r-- | e2e/karma.conf.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/e2e/karma.conf.js b/e2e/karma.conf.js index 6140ff3..5ef4646 100644 --- a/e2e/karma.conf.js +++ b/e2e/karma.conf.js @@ -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 + } + } }) } |