This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-01-20
Channels
- # announcements (30)
- # babashka (118)
- # beginners (23)
- # calva (68)
- # cljdoc (10)
- # clojars (13)
- # clojure (90)
- # clojure-bangladesh (1)
- # clojure-europe (27)
- # clojure-gamedev (1)
- # clojure-nl (11)
- # clojure-uk (4)
- # clojurescript (59)
- # community-development (3)
- # cursive (13)
- # datomic (39)
- # defnpodcast (1)
- # emacs (10)
- # figwheel-main (1)
- # fulcro (18)
- # graalvm (21)
- # honeysql (1)
- # introduce-yourself (1)
- # juxt (1)
- # lsp (197)
- # malli (19)
- # off-topic (28)
- # practicalli (2)
- # re-frame (42)
- # reagent (4)
- # reitit (7)
- # releases (2)
- # sci (35)
- # shadow-cljs (13)
- # spacemacs (4)
- # vim (3)
I’m trying to test something async using the async macro but in the test runner only one assertion is displayed per deftest. How can I fix this?
(deftest compile-expr-test
(testing "expression without references"
(async done
(-> (compile-expr "(+ 1 2)")
(.then
(fn [expr]
(is (= @expr 3))
(done))))))
(testing "expression without references"
(async done
(-> (compile-expr "(+ 1 100)")
(.then
(fn [expr]
(is (= @expr 101))
(done)))))))