Cranked up CI test suite wait duration to alleviate their nondeterminism for now

This commit is contained in:
Dan Finlay 2016-12-07 16:55:15 -08:00
parent fe01ceb857
commit c93227ea72
1 changed files with 1 additions and 1 deletions

View File

@ -2,6 +2,6 @@ function wait(time) {
return new Promise(function(resolve, reject) {
setTimeout(function() {
resolve()
}, time || 500)
}, time * 3 || 1500)
})
}