testing - How to run all project's tests from REPL? -
testing - How to run all project's tests from REPL? -
how run leiningen project's tests repl? leiningen's lein test this. how repl?
you can run loaded tests calling (clojure.test/run-all-tests).
note that not automatically load tests want run. if tests can run via "lein test" should able require test namespaces other namespace.
if you're using emacs cider, should able c-c , in namespace run tests (this will load test if wasn't loaded before).
testing clojure leiningen
Comments
Post a Comment