cljs.test/compose-fixtures

functionsince v0.0-2496 clojure.test/compose-fixturesEdit
(compose-fixtures f1 f2)

Source docstring:
Composes two fixture functions, creating a new fixture function
that combines their behavior.

NOTE: Incompatible with map fixtures.
Source code @ clojurescript:src/main/cljs/cljs/test.cljs
(defn compose-fixtures
  [f1 f2]
  (fn [g] (f1 (fn [] (f2 g)))))