Fork me on GitHub
#testing
<
2019-05-31
>
robertfw21:05:34

I'm currently using clojure.test/run-all-tests to run my tests from the REPL. I'm looking to improve the experience.. my biggest complaints right now are lack of detail about what tests failed, and suppressing stdout (from logging) of successful tests. any suggestions for any libraries I should look at?

dharrigan21:05:58

eftest is pretty good

robertfw21:05:38

@dharrigan thanks, taking it for a spin now. looks like it would definitely be an improvement

robertfw22:05:31

I also came across ltest, which doesn't seem to do output capture. Would love for the reporting style of ltest w/ the output capture of eftest