cljs.test/testing

macrosince v0.0-2496 clojure.test/testingEdit
(testing string & body)

Source docstring:
Adds a new string to the list of testing contexts.  May be nested,
but must occur inside a test function (deftest).
Source code @ clojurescript:src/main/cljs/cljs/test.cljc
(defmacro testing
  ([string & body]
   `(do
      (update-current-env! [:testing-contexts] conj ~string)
      (try
        ~@body
        (finally
          (update-current-env! [:testing-contexts] rest))))))