Print test names

This commit is contained in:
Michiel Borkent 2020-04-08 23:12:16 +02:00
parent 1e865d5c11
commit 822bae9de3

View file

@ -9,8 +9,9 @@
[clojure.test :as test :refer [deftest is testing]] [clojure.test :as test :refer [deftest is testing]]
[sci.core :as sci])) [sci.core :as sci]))
#_(defmethod clojure.test/report :begin-test-var [m] (defmethod clojure.test/report :begin-test-var [m]
(println (-> m :var meta :name))) (println "===" (-> m :var meta :name))
(println))
(defn bb [input & args] (defn bb [input & args]
(edn/read-string (apply test-utils/bb (when (some? input) (str input)) (map str args)))) (edn/read-string (apply test-utils/bb (when (some? input) (str input)) (map str args))))