cljs.test/testing-contexts-str

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

Source docstring:
Returns a string representation of the current test context. Joins
strings in *testing-contexts* with spaces.
Source code @ clojurescript:src/main/cljs/cljs/test.cljs
(defn testing-contexts-str
  []
  (apply str (interpose " " (reverse (:testing-contexts (get-current-env))))))