kaocha 2021-10-26

Hi there, is there a project generator that contains kaocha as test runner out there? I would like to repro a bug and feel quite lazy 😄

For any deps.edn projects you can use clojure -M:test/runner If you are using https://github.com/practicalli/clojure-deps-edn user level aliases

In case you're still interested, the only one coming to mind is neil: https://github.com/babashka/neil . That being said, if the default kaocha configuration is okay, you can use it without a tests.edn or binstub. I believe the following would work:

clojure -A:test -Sdeps '{lambdaisland/kaocha {:mvn/version "1.60.945"}}' -m kaocha.runner

❤️ 1