cljs.test/testing-vars-str

functionsince v0.0-2496 clojure.test/testing-vars-strEdit
(testing-vars-str m)

Source docstring:
Returns a string representation of the current test.  Renders names
in *testing-vars* as a list, then the source file and line of
current assertion.
Source code @ clojurescript:src/main/cljs/cljs/test.cljs
(defn testing-vars-str
  [m]
  (let [{:keys [file line column]} m]
    (str
      (reverse (map #(:name (meta %)) (:testing-vars (get-current-env))))
      " (" file ":" line (when column (str ":" column)) ")")))