This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-07-24
Channels
- # announcements (2)
- # aws (2)
- # babashka (1)
- # beginners (87)
- # boot (1)
- # calva (42)
- # clj-kondo (18)
- # cljdoc (5)
- # cljsjs (1)
- # cljsrn (1)
- # clojars (16)
- # clojure (222)
- # clojure-dev (30)
- # clojure-europe (17)
- # clojure-gamedev (2)
- # clojure-hungary (10)
- # clojure-italy (6)
- # clojure-nl (21)
- # clojure-spec (9)
- # clojure-uk (111)
- # clojuredesign-podcast (1)
- # clojurescript (99)
- # code-reviews (1)
- # conjure (18)
- # cursive (11)
- # datomic (22)
- # emacs (1)
- # events (3)
- # figwheel-main (3)
- # fulcro (14)
- # graalvm (41)
- # graphql (16)
- # helix (12)
- # juxt (1)
- # kaocha (56)
- # keechma (1)
- # meander (77)
- # observability (1)
- # off-topic (29)
- # pathom (3)
- # re-frame (4)
- # reagent (3)
- # reitit (1)
- # remote-jobs (3)
- # reveal (9)
- # shadow-cljs (45)
- # spacemacs (43)
- # sql (28)
- # tools-deps (14)
- # vim (1)
- # xtdb (26)
- # yada (1)
Hey all, I am working on a new re-frame app and am at the point I want to start writing some tests, I am having a hard time determining what libraries to go with. Any suggestions? I am using shadow, lein, pushy, and bidi mainly
When in doubt, I'd just use the built in clojure.test. You can always move to something else later.
Kaocha is a nice runner once you have many, many tests; the output is much more compact than the default runner. And more nicely colorized, I think.
… I realize that what I said means that Kaocha probably isn’t especially interesting for you right now 😅 I’d also just go for the simplest possible solution to begin with, so clojure.test
. I’ve had success with doo
as a runner, as well, but why bother if you don’t need it.