On Nov 2, 11:20 pm, Chanwoo Yoo <[EMAIL PROTECTED]> wrote: > When I evaluate (run-tests) in a repl of my terminal, I can see test > messages. But when I do it in slime, I can't see any messages. How I > can see test results in slime?
Hmm, not sure. I don't use SLIME, but I know that run-tests prints results to *test-out*, which by default is bound to java.lang.System.err. You could try re-binding *test-out* to standard output like this: (binding [*test-out* System/out] (run-tests)) -Stuart Sierra --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/clojure?hl=en -~----------~----~----~----~------~----~------~--~---
