Clojure and ClojureScript testing with the Clojure CLI

from blog Oliver Caldwell's blog, | ↗ original
This post is sort of an extension of a previous post, Clojure projects from scratch. That will introduce you to structuring your project around a deps.edn file, here we’re going to simply add a couple of dependencies that allow you to run your tests. In a Leiningen project, lein test will execute your Clojure tests, no questions asked. In a...