I have client-server app (backend in Clojure+ring, frontend done with ClojureScript) and there are unit tests, but only for backend.
Each time when I run 'lein test' lein have to compile ClojureScript, because ':hook [leiningen.cljsbuild]' is set in project.clj.
Can I somehow run tests without ClojureScript recompilation?
:cljsbuild { :test-commands { ?? }}- Alexey Kachayev