diff options
Diffstat (limited to 'test/integration/helpers.js')
-rw-r--r-- | test/integration/helpers.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/integration/helpers.js b/test/integration/helpers.js index eede103b4..10cd74e64 100644 --- a/test/integration/helpers.js +++ b/test/integration/helpers.js @@ -1,6 +1,6 @@ function wait(time) { - return new Promise(function(resolve, reject) { - setTimeout(function() { + return new Promise(function (resolve, reject) { + setTimeout(function () { resolve() }, time * 3 || 1500) }) |