[cljs tests]: splicing :clj imports
This commit is contained in:
parent
268162324f
commit
f06dc427f0
1 changed files with 5 additions and 3 deletions
|
|
@ -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 []
|
||||
|
|
|
|||
Loading…
Reference in a new issue