Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unit registries #6

Draft
wants to merge 14 commits into
base: master
Choose a base branch
from
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ all: test
test: node_modules
clojure -A:test

test-watch: node_modules
clojure -C:test -R:test -m kaocha.runner --watch

lint:
clj-kondo --lint src test

Expand Down
18 changes: 8 additions & 10 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
{:aliases
{:test {:extra-deps
#:lambdaisland{kaocha #:mvn{:version "0.0-565"}
kaocha-cljs #:mvn{:version "0.0-68"}}
:extra-paths ["test"]
:main-opts ["-m" "kaocha.runner"]}}
:deps {org.clojure/clojure #:mvn{:version "1.10.1"}
org.clojure/spec.alpha #:mvn{:version "0.2.176"}
org.clojure/test.check #:mvn{:version "0.10.0"}}
:paths ["src"]}
{:paths ["src"]
:deps {instaparse {:mvn/version "1.4.10"}
org.clojure/clojure {:mvn/version "1.10.1"}
org.clojure/test.check {:mvn/version "1.0.0"}}
:aliases {:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.0-612"}
lambdaisland/kaocha-cljs {:mvn/version "0.0-71"}}
:extra-paths ["test"]
:main-opts ["-m" "kaocha.runner"]}}}
Loading