Variable: cider-test-report-mode-map
cider-test-report-mode-map is a variable defined in cider-test.el.
Value
<backtab> cider-test-previous-result
C-c , cider-test-menu
C-c C-t cider-test-menu
M-. cider-test-jump
M-n cider-test-next-result
M-p cider-test-previous-result
RET cider-test-jump
TAB cider-test-next-result
d cider-test-ediff
e cider-test-stacktrace
f cider-test-rerun-failed-tests
g cider-test-run-test
l cider-test-run-loaded-tests
n cider-test-run-ns-tests
p cider-test-run-project-tests
q cider-popup-buffer-quit-function(var)/cider-popup-buffer-quit-function(fun)
s cider-test-run-ns-tests-with-filters
t cider-test-jump
Documentation
Keymap for cider-test-report-mode.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-test.el
(defvar cider-test-report-mode-map
(let ((map (make-sparse-keymap)))
(define-key map (kbd "C-c ,") #'cider-test-menu)
(define-key map (kbd "C-c C-t") #'cider-test-menu)
(define-key map (kbd "M-p") #'cider-test-previous-result)
(define-key map (kbd "M-n") #'cider-test-next-result)
(define-key map (kbd "M-.") #'cider-test-jump)
(define-key map (kbd "<backtab>") #'cider-test-previous-result)
(define-key map (kbd "TAB") #'cider-test-next-result)
(define-key map (kbd "RET") #'cider-test-jump)
(define-key map (kbd "t") #'cider-test-jump)
(define-key map (kbd "d") #'cider-test-ediff)
(define-key map (kbd "e") #'cider-test-stacktrace)
;; `f' for "run failed".
(define-key map "f" #'cider-test-rerun-failed-tests)
(define-key map "n" #'cider-test-run-ns-tests)
(define-key map "s" #'cider-test-run-ns-tests-with-filters)
(define-key map "l" #'cider-test-run-loaded-tests)
(define-key map "p" #'cider-test-run-project-tests)
;; `g' generally reloads the buffer. The closest thing we have to that is
;; "run the test at point". But it's not as nice as rerunning all tests in
;; this buffer.
(define-key map "g" #'cider-test-run-test)
(define-key map "q" #'cider-popup-buffer-quit-function)
(easy-menu-define cider-test-report-mode-menu map
"Menu for CIDER's test result mode"
'("Test-Report"
["Previous result" cider-test-previous-result]
["Next result" cider-test-next-result]
"--"
["Rerun current test" cider-test-run-test]
["Rerun failed/erring tests" cider-test-rerun-failed-tests]
["Run all ns tests" cider-test-run-ns-tests]
["Run all ns tests with filters" cider-test-run-ns-tests-with-filters]
["Run all loaded tests" cider-test-run-loaded-tests]
["Run all loaded tests with filters" (apply-partially cider-test-run-loaded-tests 'prompt-for-filters)]
["Run all project tests" cider-test-run-project-tests]
["Run all project tests with filters" (apply-partially cider-test-run-project-tests 'prompt-for-filters)]
"--"
["Jump to test definition" cider-test-jump]
["Display test error" cider-test-stacktrace]
["Display expected/actual diff" cider-test-ediff]))
map))