You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Any failing clojure.test/is assertions where non-string objects are passed in the second argument will cause the test run to fall over with a ClassCastException (it appears to retry several times).
To reporduce, run the following test with Run Test Under Caret in REPL or Run Tests in Current NS in REPL. It will break on the third assertion; gutter icons will appear for the first two assertions, but nothing after.
Any failing
clojure.test/is
assertions where non-string objects are passed in the second argument will cause the test run to fall over with aClassCastException
(it appears to retry several times).To reporduce, run the following test with
Run Test Under Caret in REPL
orRun Tests in Current NS in REPL
. It will break on the third assertion; gutter icons will appear for the first two assertions, but nothing after.It would be great if cursive could handle this more gracefully as it can be quite awkward in projects where this is commonplace.
My current workaround is to hijack
clojure.test/assert-expr
and add apr-str
tomsg
:The text was updated successfully, but these errors were encountered: