This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-09-21
Channels
- # beginners (82)
- # bitcoin (1)
- # boot (38)
- # cider (6)
- # cljs-dev (13)
- # cljsrn (5)
- # clojure (320)
- # clojure-italy (22)
- # clojure-losangeles (6)
- # clojure-russia (55)
- # clojure-spec (25)
- # clojure-uk (48)
- # clojurescript (64)
- # component (16)
- # core-async (6)
- # cursive (54)
- # data-science (2)
- # datascript (2)
- # datomic (8)
- # docker (1)
- # ethereum (1)
- # fulcro (1)
- # garden (1)
- # graphql (16)
- # heroku (6)
- # hoplon (12)
- # jobs (4)
- # juxt (1)
- # leiningen (9)
- # off-topic (39)
- # om (13)
- # om-next (2)
- # onyx (9)
- # pedestal (2)
- # portkey (12)
- # re-frame (25)
- # reagent (6)
- # ring-swagger (4)
- # schema (1)
- # shadow-cljs (10)
- # spacemacs (11)
- # testing (19)
- # uncomplicate (1)
- # unrepl (6)
- # vim (21)
- # yada (3)
i am using lein repl
on windows and i don't have java completions. how can i configure them?
with lein test
is there a way to run tests in namespaces that match a wildcard? I wanted lein test intergation.*
to run tests in namespace that start with integration
, but it doesn't. Is there another way to do that?
@adamfrey the normal way to do that is put metadata on the tests, and pass the metadata key as an arg to lein test
so you have (deftest ^:integration db-integration ...)
and then lein test :integration
will find and run all tests with that metadata
you can also put multiple metadata on one test, or run multiple tags in one lein test run
beginner question: I have a clojurescript project nested in a django app. Its isolated from other apps and I don't want the project.clj at the root level of the project. Nonetheless when building the cljs project I need the build artifacts (:output-to, etc) to go to a parent (relative to the cljs folder) folder. How would I do this?
@dfcarpenter wouldn't a path starting with ../
work?
@noisesmith Ahh yes so obvious. Don't know why I just didn't try that first. Thanks!