Variable: cider-test-menu

cider-test-menu is a variable defined in cider-test.el.

Value

("Test" ["Run test" cider-test-run-test]
 ["Run namespace tests" cider-test-run-ns-tests]
 ["Run namespace 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)]
 ["Run tests after load-file" cider-auto-test-mode :style toggle
  :selected cider-auto-test-mode]
 "--" ["Interrupt running tests" cider-interrupt]
 ["Rerun failed/erring tests" cider-test-rerun-failed-tests]
 ["Show test report" cider-test-show-report] "--"
 ["Configure testing" (customize-group 'cider-test)])

Documentation

CIDER test submenu.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-test.el
(defconst cider-test-menu
  '("Test"
    ["Run test" cider-test-run-test]
    ["Run namespace tests" cider-test-run-ns-tests]
    ["Run namespace 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)]
    ["Run tests after load-file" cider-auto-test-mode
     :style toggle :selected cider-auto-test-mode]
    "--"
    ["Interrupt running tests" cider-interrupt]
    ["Rerun failed/erring tests" cider-test-rerun-failed-tests]
    ["Show test report" cider-test-show-report]
    "--"
    ["Configure testing" (customize-group 'cider-test)])
  "CIDER test submenu.")