Function: cider-test-type-face
cider-test-type-face is a byte-compiled function defined in
cider-test.el.
Signature
(cider-test-type-face TYPE)
Documentation
Return the font lock face for the test result TYPE.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-test.el
(defun cider-test-type-face (type)
"Return the font lock face for the test result TYPE."
(pcase type
("pass" 'cider-test-success-face)
("fail" 'cider-test-failure-face)
("error" 'cider-test-error-face)
(_ 'default)))