Reorganize tests
This commit is contained in:
parent
2bb162d98a
commit
7f45956503
3 changed files with 3 additions and 3 deletions
|
@ -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"
|
||||
|
|
|
@ -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]
|
||||
|
|
|
@ -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]
|
Loading…
Reference in a new issue