fix missing async.done() call for non-js

This commit is contained in:
2021-11-09 20:39:40 -07:00
parent d7b201eb72
commit 5b6384fe37

View File

@@ -7,7 +7,10 @@
(Assert.equals 6 (+ a b c)) (Assert.equals 6 (+ a b c))
(async.done)) (async.done))
} }
(Assert.pass))) {
(Assert.pass)
(async.done)
}))
(function _testRejectedPromise [:Async async] (function _testRejectedPromise [:Async async]
(#if js (#if js
@@ -19,4 +22,7 @@
(Assert.fail) (Assert.fail)
(async.done)) (async.done))
} }
(Assert.pass))) {
(Assert.pass)
(async.done)
}))