Hi! Is it possible to run a subset of tests in the REPL with fixtures? I tried
(clojure.test/run-all-tests #".*\.(persistence|organization-service|versioning-service).*-test")
which runs the tests but gives a strange error so I suspect it does not run the fixtures.Thank you! So I guess I need to write my own logic to find the namespaces and then use test-all-vars to run them...
Wow, let me add this to my list of "why avoid fixtures in Clojure" 🤣
clojure.test/test-vars will run fixtures (test-var doesn't run fixtures)