Hi, what people use as Clojurescript test runner? Custom scripts with cljs.build.api/watch or something like [lein-doo](https://github.com/bensu/doo)?
I'm using a custom script, but will consider bensu/doo the next time, looks nice
@nberger: Do you use cljs.build.api/watch in your custom script or something else (such as a Javascript script)?
@jindrichm: I used a javascript script with a base html page, because I wanted to test some react components mounted on the dom. The setup was similar to that of https://github.com/emezeske/lein-cljsbuild/tree/1.0.6/example-projects/advanced
I think I took the base setup from somewhere else, but I can't find it now
@nberger: Thanks for the link! It seems I should investigate it in more depth.
No problem. Anyways, don't take as a recommendation... If you don't need to mount on the DOM you could just use cljs.build.api and even call (run-tests)
from your test file