diff --git a/project.clj b/project.clj index 474fe6d..96fc4de 100644 --- a/project.clj +++ b/project.clj @@ -6,13 +6,14 @@ :jvm-opts ["-XX:-OmitStackTraceInFastThrow"] ; this prevents JVM from doing optimizations which can remove stack traces from NPE and other exceptions :plugins [[lein-cljsbuild "1.0.6"]] :source-paths ["src"] - :test-paths ["test/clj"] + :test-paths ["test"] :profiles {:dev {:dependencies [[org.clojure/test.check "0.5.9"]]} } :cljsbuild { :builds [{ :source-paths ["src"] + :test-paths ["test"] :compiler { :output-to "target/cljsbuild-main.js"}}] }) diff --git a/test/clj/com/rpl/specter/core_test.clj b/test/com/rpl/specter/core_test.clj similarity index 100% rename from test/clj/com/rpl/specter/core_test.clj rename to test/com/rpl/specter/core_test.clj diff --git a/test/clj/com/rpl/specter/test_helpers.clj b/test/com/rpl/specter/test_helpers.clj similarity index 100% rename from test/clj/com/rpl/specter/test_helpers.clj rename to test/com/rpl/specter/test_helpers.clj