diff --git a/dev/dev.clj b/dev/dev.clj index 4da3e15..e74d05b 100644 --- a/dev/dev.clj +++ b/dev/dev.clj @@ -19,12 +19,9 @@ (defn start [] (with-logging-status) - (mount/start-without #'check.start-with-test/test-conn - #'check.start-with-test/test-nrepl - #'check.parts-test/should-not-start - #'check.suspend-resume-test/randomizer - #'check.suspend-resume-test/web-server - #'check.suspend-resume-test/q-listener)) ;; example on how to start app without certain states + (mount/start #'app.config/app-config + #'app.nyse/conn + #'app/nrepl)) ;; example on how to start app with certain states (defn stop [] (mount/stop)) diff --git a/test/check/suspend_resume_test.clj b/test/check/suspend_resume_test.clj index e5d022f..eb37ace 100644 --- a/test/check/suspend_resume_test.clj +++ b/test/check/suspend_resume_test.clj @@ -139,5 +139,3 @@ (is (= q-listener :q-suspended)) (is (= web-server :w-suspended)) (mount/stop)))) - -(run-tests)