fix missing async.done() call for non-js
This commit is contained in:
@@ -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)
|
||||||
|
}))
|
Reference in New Issue
Block a user