This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-08-09
Channels
- # announcements (3)
- # babashka (120)
- # beginners (87)
- # calva (7)
- # clj-kondo (35)
- # cljsrn (25)
- # clojure (94)
- # clojure-austin (4)
- # clojure-europe (53)
- # clojure-nl (2)
- # clojure-norway (6)
- # clojurescript (16)
- # conjure (8)
- # cursive (6)
- # data-oriented-programming (2)
- # data-science (19)
- # datahike (1)
- # datalevin (29)
- # datomic (13)
- # fulcro (50)
- # gratitude (1)
- # honeysql (9)
- # jackdaw (2)
- # kaocha (7)
- # leiningen (3)
- # malli (4)
- # off-topic (4)
- # polylith (3)
- # re-frame (5)
- # reagent (1)
- # releases (1)
- # reveal (4)
- # shadow-cljs (17)
- # tools-deps (10)
- # vim (17)
- # vscode (4)
- # xtdb (3)
Hey folks, does anyone know if I can user (kaocha.repl/run ...)
to run a specified fdef
? And if so, how?
Awesome, thanks for that. I thought I'd tried that before, but didn't realise aliasing wouldn't work 🙇
I'm experimenting with a new reporter, and I don't see any report keyword for "start of the entire test run". There's :summary
"end of the entire test run", which is used by clojure.test, but nothing that allows for printing a "starting a test run". would y'all be interested in such a thing?
Sure! I wrote this when working on the small PR I opened: https://github.com/lambdaisland/kaocha/pull/304. My thought is I would like a reporter that says "Starting a test run", is silent until the end of the run, and then prints "Here's the summary". I tend to keep my terminal open next to my editor and having stuff constantly printing is distracting. Likewise, if I use an editor plugin to run the test inline (for example, with #conjure), I don't want the output window to be printing stuff and distracting me/keeping me from seeing other info.
Here's a WIP for a "summary only" reporter that only prints the summary at the end and nothing else: https://github.com/lambdaisland/kaocha/pull/304