Files
logseq/clj-e2e/deps.edn
Gabriel Horner f11775dd76 refactor: have test repo use its own ns, logseq.e2e
Like any other repo, give it its own top-level ns to avoid conflicts
with other repos. Also removed unused ns that was generated
2025-04-23 16:32:55 -04:00

19 lines
938 B
Clojure

{:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.12.0"}
;; io.github.pfeodrippe/wally {:local/root "../../../wally"}
io.github.pfeodrippe/wally {:git/url "https://github.com/logseq/wally"
:sha "6b0583701fc64ec5177eec6577e33bb8d9115d61"}
;; io.github.zmedelis/bosquet {:mvn/version "2025.03.28"}
}
:aliases
{:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.5"}}
:ns-default build}
:serve {:deps {org.babashka/http-server {:mvn/version "0.1.13"}}
:main-opts ["-m" "babashka.http-server"]
:exec-fn babashka.http-server/exec}
:test {:extra-paths ["test"]
:main-opts ["-m" "cognitect.test-runner"]
:extra-deps {org.clojure/test.check {:mvn/version "1.1.1"}
io.github.cognitect-labs/test-runner
{:git/tag "v0.5.1" :git/sha "dfb30dd"}}}}}