Make callAsync a little less flaky

This commit is contained in:
impinball 2016-08-03 07:21:15 -04:00
parent 608a494538
commit c9f1778dc9
2 changed files with 57 additions and 3 deletions

View file

@ -20,6 +20,6 @@ o.spec("callAsync", function() {
})
timeout = setTimeout(function() {
throw new Error("callAsync was called too slow")
}, 0)
}, 5)
})
})
})