Is there a way to run tear up and tear down for every deftest?
can you elaborate? if you are writing a separate one for each test, then why not put the setup/teardown directly inside the test?
@dharrigan the problem with that is there is only one fixture for the namespace. I am trying to write a fixture per deftest.
In that case, perhaps https://cljdoc.org/d/lambdaisland/kaocha/1.0.700/doc/plugin-hooks may help.
I would try and strive for clojure.test compatibility (for like executing tests from your editor integration). It's unfortunate that clojure.test only has ns-level fixtures. One solution is to break the test ns up by fixture which shouldn't break other clojure.test integrations