kaocha

richiardiandrea 2021-10-26T21:35:00.003900Z

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 😄

practicalli-johnny 2021-10-30T11:58:19.004700Z

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

Alys Brooks 2021-10-28T20:32:00.004300Z

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