diff options
Cranked up CI test suite wait duration to alleviate their nondeterminism for now
Diffstat (limited to 'test/integration')
-rw-r--r-- | test/integration/helpers.js | 2 |
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) }) } |