`lein test` / `clojure.test` 是否有 verbose/colored 模式?

Is there a verbose/colored mode for `lein test` / `clojure.test`?

clojure.test 通过 lein test 的默认输出非常平庸:

Ran 1 tests containing 1 assertions.
0 failures, 0 errors.

我想也许 Clojure 的人是极简主义者,但在我使用过的所有其他语言中,测试 运行 用户使用 red/green 颜色来一目了然地指示 failing/passing 测试,并且通常带有详细模式,我可以用它来查看每个测试 运行.

看来我可以通过 do-report method in clojure.test 做到这一点。但是是否已经有插件或选项或其他东西可以做到这一点?

kaocha and eftest 可以与 lein test 一起使用并产生彩色测试输出。