Function: cider-test-echo-running

cider-test-echo-running is a byte-compiled function defined in cider-test.el.

Signature

(cider-test-echo-running NS &optional TEST)

Documentation

Echo a running message for the test NS, which may be a keyword.

The optional arg TEST denotes an individual test name.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-test.el
;;; Message echo

(defun cider-test-echo-running (ns &optional test)
  "Echo a running message for the test NS, which may be a keyword.
The optional arg TEST denotes an individual test name."
  (if test
      (message "Running test %s in %s..."
               (cider-propertize test 'bold)
               (cider-propertize ns 'ns))
    (message "Running tests in %s..."
             (concat (cider-propertize
                      (cond ((stringp ns) ns)
                            ((eq :non-passing ns) "failing")
                            ((eq :loaded ns)  "all loaded")
                            ((eq :project ns) "all project"))
                      'ns)
                     (unless (stringp ns) " namespaces")))))