Function: cider-test-non-passing
cider-test-non-passing is a byte-compiled function defined in
cider-test.el.
Signature
(cider-test-non-passing TESTS)
Documentation
For a list of TESTS, each an `nrepl-dict`, return only those that did not pass.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-test.el
(defun cider-test-non-passing (tests)
"For a list of TESTS, each an `nrepl-dict`, return only those that did not pass."
(seq-filter (lambda (test)
(unless (equal (nrepl-dict-get test "type") "pass")
test))
tests))