Variable: cider-test-easy-menu

cider-test-easy-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]
 ["Stop after first failure" cider-test-toggle-fail-fast :style toggle :selected cider-test-fail-fast]
 "--"
 ["Interrupt running tests" cider-interrupt]
 ["Rerun the last test" cider-test-rerun-test]
 ["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 (for the menu bar).

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-test.el
(defconst cider-test-easy-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]
    ["Stop after first failure" cider-test-toggle-fail-fast
     :style toggle :selected cider-test-fail-fast]
    "--"
    ["Interrupt running tests" cider-interrupt]
    ["Rerun the last test" cider-test-rerun-test]
    ["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 (for the menu bar).")