testing

zeddan 2022-08-11T08:33:57.453309Z

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

seancorfield 2022-08-11T13:01:17.530009Z

What do you mean by "verbose"?

zeddan 2022-08-11T13:02:59.804199Z

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

seancorfield 2022-08-11T13:53:11.937499Z

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

seancorfield 2022-08-11T13:55:14.415559Z

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

plexus 2022-08-11T14:08:15.201599Z

Have you looked at Kaocha @robin.saaf? 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.szabo 2022-08-11T23:07:33.874169Z

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)