Fork me on GitHub
#testing
<
2022-08-11
>
zeddan08:08:57

Is there any way to make clojure -X:test verbose?

seancorfield13:08:17

What do you mean by "verbose"?

zeddan13:08:59

Something along the lines of showing what tests inside the test file that are being run. I don’t have a clear vision of what I want, just more info regarding what’s happening - it depends on what is possible

seancorfield13:08:11

Which test runner are you using with :test - different test runners offer different options for that sort of thing.

seancorfield13:08:14

It also sounds like you're interested in test coverage - showing which lines get tested. So perhaps look at cloverage

plexus14:08:15

Have you looked at Kaocha @U033Q6RBXJ6? it's the most feature complete test runner for Clojure, and has multiple "reporters" that give you different kinds of output, as well as cloverage integration.

mauricio.szabo23:08:33

You can always define the multimethods yourself to make them more verbose. I actually do that in a few projects, if you're interested (on my work I'm currently redirecting the test output to Android emulator, for example)