Fork me on GitHub
#testing2015-08-06
>
jindrichm14:08:34

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)?

nberger15:08:32

I'm using a custom script, but will consider bensu/doo the next time, looks nice

jindrichm15:08:30

@nberger: Do you use cljs.build.api/watch in your custom script or something else (such as a Javascript script)?

nberger16:08:56

@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

nberger16:08:17

I think I took the base setup from somewhere else, but I can't find it now

jindrichm16:08:54

@nberger: Thanks for the link! It seems I should investigate it in more depth.

nberger16:08:00

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