From c93227ea72b980a0ca45f781a5088a819afd9f46 Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Wed, 7 Dec 2016 16:55:15 -0800 Subject: [PATCH] Cranked up CI test suite wait duration to alleviate their nondeterminism for now --- test/integration/helpers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) }) }