re-frame

https://github.com/Day8/re-frame/blob/master/docs/README.md https://github.com/Day8/re-frame/blob/master/docs/External-Resources.md
Grant Isom 2020-07-24T14:43:21.054100Z

Hey all, I am working on a new re-frame app and am at the point I want to start writing some tests, I am having a hard time determining what libraries to go with. Any suggestions? I am using shadow, lein, pushy, and bidi mainly

reefersleep 2020-07-25T12:12:25.069700Z

Kaocha is a nice runner once you have many, many tests; the output is much more compact than the default runner. And more nicely colorized, I think.

reefersleep 2020-07-26T19:11:42.085700Z

… I realize that what I said means that Kaocha probably isn’t especially interesting for you right now 😅 I’d also just go for the simplest possible solution to begin with, so clojure.test. I’ve had success with doo as a runner, as well, but why bother if you don’t need it.

whoops 2020-07-24T18:39:36.054400Z

When in doubt, I'd just use the built in clojure.test. You can always move to something else later.