Closed chrismurrph closed 4 years ago
Looking at the source, the issue is with the function ns-filter, so looking for only namespaces: #".*-test$". For me that was a hidden default understanding that I didn't have. I'll rename my test namespaces now.
Would it be okay for this sentence in the README to be changed:
This will scan your project's test directory for any tests defined using clojure.test and run them.
To be similar to this:
This will scan your project's test directory for clojure.test deftest
s (in namespaces ending with "-test") and then run them.
There is a -r option to set the ns-filter regex btw, which is documented as Defaults to #".*-test$
.
I don't understand why it is saying "Testing user". Is this the user namespace? The alias from deps.edn looks like this:
src/test is a directory off the project root directory, under which there are many namespaces that have many
deftest
s in them.