Definitely plans to support async and happy to take a patch.

Basically I would like sugar that looks like this:

(deftest foo
  (async done
     ...))

This desugars into:

(deftest foo
   (reify
     IAsyncTest
     (-invoke [_ done]
        ...))

The test runners should check for satisfies? IAsyncTest do nothing if
that's the return value of the test. Invoking done will gather
reporting information and invoke the next test. There should be a new
timeout parameter which fails a long running async test and continues.

David

On Mon, Jan 5, 2015 at 2:20 PM, Herwig Hochleitner
<[email protected]> wrote:
> It's great to see unit test support in clojurescript. Are there plans to
> support asynchronous tests or should I keep using cemerick's cljs.test for
> this?
>
> --
> Note that posts from new members are moderated - please be patient with your
> first post.
> ---
> You received this message because you are subscribed to the Google Groups
> "ClojureScript" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To post to this group, send email to [email protected].
> Visit this group at http://groups.google.com/group/clojurescript.

-- 
Note that posts from new members are moderated - please be patient with your 
first post.
--- 
You received this message because you are subscribed to the Google Groups 
"ClojureScript" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/clojurescript.

Reply via email to