This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-09-20
Channels
- # announcements (16)
- # aws (1)
- # babashka (24)
- # beginners (54)
- # calva (25)
- # cider (4)
- # cljs-dev (2)
- # clojure (16)
- # clojure-dev (39)
- # clojure-europe (18)
- # clojure-nl (1)
- # clojure-uk (4)
- # clojurescript (66)
- # core-async (16)
- # cursive (13)
- # datomic (15)
- # deps-new (1)
- # duct (22)
- # fulcro (20)
- # jobs-discuss (1)
- # kaocha (3)
- # lsp (11)
- # malli (8)
- # off-topic (38)
- # other-languages (18)
- # polylith (18)
- # portal (15)
- # react (2)
- # reagent (9)
- # reitit (7)
- # releases (10)
- # reveal (1)
- # sci (13)
- # shadow-cljs (3)
- # specter (4)
- # sql (4)
- # xtdb (16)
Can I configure CIDER to print the annotations generated by forms like (clojure.test/testing "xyz" ...)
in the REPL?
I have this in a helper ns somewhere
(defmacro testing [string & body]
`(binding [clojure.test/*testing-contexts* (conj clojure.test/*testing-contexts* (doto (str (clojure.string/trim (str ~string)) "\n")
println))]
[email protected]))
(alter-var-root #'clojure.test/testing (constantly @#'testing))
(originally I created it for inserting a "\n". Sneaked a println to satisfy your requirement)