Function: cider-test-show-report
cider-test-show-report is an interactive and byte-compiled function
defined in cider-test.el.
Signature
(cider-test-show-report)
Documentation
Show the test report buffer, if one exists.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-test.el
;; Report navigation
(defun cider-test-show-report ()
"Show the test report buffer, if one exists."
(interactive)
(if-let* ((report-buffer (get-buffer cider-test-report-buffer)))
(switch-to-buffer report-buffer)
(message "No test report buffer")))