diff --git a/project.clj b/project.clj index 98c3c30..ff87435 100644 --- a/project.clj +++ b/project.clj @@ -30,7 +30,7 @@ :prod {:source-paths ["src/cljs"] :compiler {:output-to "public/js/grub.js" :optimizations :advanced}}}} - :source-paths ["src/clj" "integration"] + :source-paths ["src/clj" "src/test"] :test-paths ["spec/clj"] :ring {:handler grub.core/app} :uberjar-name "grub-standalone.jar" diff --git a/src/clj/grub/core.clj b/src/clj/grub/core.clj index 54ab095..e30f1ba 100644 --- a/src/clj/grub/core.clj +++ b/src/clj/grub/core.clj @@ -1,7 +1,7 @@ (ns grub.core (:require [grub.websocket :as ws] [grub.db :as db] - [grub.integration-test :as integration-test] + [grub.test.integration.core :as integration-test] [ring.middleware.reload :as reload] [ring.middleware.file :as file] [ring.util.response :as resp] diff --git a/integration/grub/integration_test.clj b/src/test/grub/integration/core.clj similarity index 98% rename from integration/grub/integration_test.clj rename to src/test/grub/integration/core.clj index 930d062..1bcf92c 100644 --- a/integration/grub/integration_test.clj +++ b/src/test/grub/integration/core.clj @@ -1,4 +1,4 @@ -(ns grub.integration-test +(ns grub.test.integration.core (:require [grub.db :as db] [grub.websocket :as ws] [clj-webdriver.taxi :as taxi]