How do i get the failing input for a test generated via stest? I feel like it's under the :failure inside an exception.
(-> (stest/check `remove-middlemen)
first
:failure
type)
;; => #<Class@6e8cf4c6 java.lang.NullPointerException>
Or is there a better way?Maybe abbrev-result
yep calling abbrev result and drilling into the results got me the info i wanted. thanks.