I'm using Emacs 25.0.50.1 and CIDER 0.10.0snapshot.
Given the following example:
(deftest example1
(checking "this-will-fail" 100
[n gen/pos-int]
(is (> 0 n))))
Running test with cider-test-run-test or cider-test-run-tests, the reporting will fail with following error message:
Debugger entered--Lisp error: (wrong-type-argument stringp (dict "fail" (0) "failing-size" 0 "num-tests" ...
I have tested it without the checking macro:
(deftest example2
(testing "this-will-fail"
(is (> 0 1))))
This works as intended, so currently I'm assuming the error has something to do with test.chuck and not CIDER itself.
However, invoking the tests with (clojure.test/run-tests) provides the intended output, so I'm a bit loss here where the problem might lie.