diff --git a/test/runner.clj b/test/runner.clj deleted file mode 100644 index e8d3d3d05e84110545d68350b7db2c9d1cfbf979..0000000000000000000000000000000000000000 --- a/test/runner.clj +++ /dev/null @@ -1,24 +0,0 @@ -(ns test.runner - "JVM entrypoint: run the same flows as Kaocha (for scripts / quick runs)." - (:require [test.integration :as integration] - [test.auth :as auth] - [test.grants :as grants] - [test.invites :as invites] - [test.room-list :as room-list] - [test.browser-sse :as browser-sse] - [test.browser-post-redact :as browser-post-redact] - [test.browser-ui-morph :as browser-ui-morph])) - -(defn run-core! [] - (integration/integration-flow!) - (auth/auth-flow!) - (grants/grants-flow!) - (invites/invites-flow!) - (room-list/room-list-flow!)) - -(defn -main [& args] - (case (vec args) - ["browser-sse"] (browser-sse/sse-browser-flow!) - ["browser-post-redact"] (browser-post-redact/post-redact-flow!) - ["browser-ui-morph"] (browser-ui-morph/ui-morph-flow!) - (run-core!)))