1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 09:57:02 +01:00

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

View File

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