[boot]: moving tests to test/core
to avoid "boot => The :source-paths, :resource-paths, and :asset-paths must not overlap."
This commit is contained in:
parent
8f9f44e3cc
commit
a75b087b8f
14 changed files with 2 additions and 2 deletions
|
|
@ -52,7 +52,7 @@
|
||||||
(in-ns 'dev))
|
(in-ns 'dev))
|
||||||
|
|
||||||
(deftask test []
|
(deftask test []
|
||||||
(set-env! :source-paths #(conj % "test" "test/clj")) ;; (!) :source-paths must not overlap.
|
(set-env! :source-paths #(conj % "test/core" "test/clj")) ;; (!) :source-paths must not overlap.
|
||||||
(bt/test))
|
(bt/test))
|
||||||
|
|
||||||
(task-options!
|
(task-options!
|
||||||
|
|
|
||||||
|
|
@ -61,4 +61,4 @@
|
||||||
:optimizations :advanced
|
:optimizations :advanced
|
||||||
:pretty-print false}}}}}
|
:pretty-print false}}}}}
|
||||||
|
|
||||||
:test {:source-paths ["test" "test/clj" "test/cljs"]}})
|
:test {:source-paths ["test/core" "test/clj" "test/cljs"]}})
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue