This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
How would direct the output of a deftest to the repl instead of to stdout?
with-out-str seems to just return an empty string in the case of a failing test.
Maybe the output is printed to stderr? You can try binding *err*
to something that logs into your REPL.
It's because when you run a test, a function which does it binds *out*
to something else.
thsnks p-hmiik, igishaev and jjttjj. Ill try the binding if i end up really needing this đŸ™‚
Oh my god thank you very much. I've lost so much time because of this and it was right from the start ^^