From f06dc427f090be514d9d3f3e4d43258a2a842c9f Mon Sep 17 00:00:00 2001 From: anatoly Date: Tue, 8 Dec 2015 00:56:34 -0500 Subject: [PATCH] [cljs tests]: splicing :clj imports --- test/mount/test.cljc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/test/mount/test.cljc b/test/mount/test.cljc index 96a136d..b36c5b1 100644 --- a/test/mount/test.cljc +++ b/test/mount/test.cljc @@ -2,7 +2,7 @@ (:require #?@(:cljs [[cljs.test :as t] [doo.runner :refer-macros [doo-tests]]] - :clj [clojure.test :as t]) + :clj [[clojure.test :as t]]) [mount.core :as mount] mount.test.fun-with-values @@ -10,8 +10,10 @@ (mount/in-cljc-mode) -(doo.runner/doo-tests 'mount.test.fun-with-values - 'mount.test.private-fun) +#?(:cljs + (doo-tests 'mount.test.fun-with-values + 'mount.test.private-fun)) + ;; (doo.runner/do-all-tests) (defn run-tests []