Function: cider--test-silently
cider--test-silently is a byte-compiled function defined in
cider-test.el.
Signature
(cider--test-silently)
Documentation
Like cider-test-run-tests, but with less feedback.
Only notify the user if there actually were any tests to run and only after the results are received.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-test.el
;;; Auto-test mode
(defun cider--test-silently ()
"Like `cider-test-run-tests', but with less feedback.
Only notify the user if there actually were any tests to run and only after
the results are received."
(when (cider-connected-p)
(let ((cider-auto-select-test-report-buffer nil)
(cider-test-show-report-on-success nil))
(cider-test-run-ns-tests nil 'soft))))