aboutsummaryrefslogtreecommitdiffstats
path: root/test/integration/helpers.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/helpers.js')
-rw-r--r--test/integration/helpers.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/helpers.js b/test/integration/helpers.js
index 40f78d701..eede103b4 100644
--- a/test/integration/helpers.js
+++ b/test/integration/helpers.js
@@ -2,6 +2,6 @@ function wait(time) {
return new Promise(function(resolve, reject) {
setTimeout(function() {
resolve()
- }, time || 500)
+ }, time * 3 || 1500)
})
}