This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-04-16
Channels
- # beginners (81)
- # calva (6)
- # cider (21)
- # clj-kondo (2)
- # clojure (62)
- # clojure-austin (3)
- # clojure-europe (3)
- # clojure-italy (20)
- # clojure-nl (39)
- # clojure-russia (4)
- # clojure-spec (19)
- # clojure-uk (23)
- # clojurescript (76)
- # cursive (6)
- # data-science (9)
- # datomic (12)
- # defnpodcast (1)
- # figwheel-main (3)
- # fulcro (8)
- # jackdaw (5)
- # jobs (1)
- # jobs-discuss (18)
- # joker (1)
- # leiningen (2)
- # liberator (2)
- # off-topic (148)
- # onyx (5)
- # pedestal (39)
- # planck (7)
- # re-frame (5)
- # reagent (3)
- # reitit (37)
- # shadow-cljs (165)
- # tools-deps (1)
- # yada (19)
Our chances are slim, I would say. There are so many worthy projects out there. But, yeah, Calva really needs to improve when it comes to onboarding newcomers to Clojure, and funding for a focused effort on that would surely help a lot.
Hey everyone 🙂 Is there are way to run a single test with Calva. So my idea is that I would like to have a given test file open and when I have my cursor at the beginning (or end) of a test, I’d like only this test to be run. Is this possible? I tried to following steps: 1. Evaluate the namespace expression at the beginning of the file (in order to make sure, that I have all the necessary requires for the test) via ⌃ + ⌥ + e. 2. Evaluate the test - however, instead of getting an output such as true/false, success/failure, I only get the name of the test.
It is not something that Calva supports yet. It has been on the todo list since before Calva was first released. Shouldn't even be that hard to do, but I had no clue back then how to do it. For now you'll have to run such a test from the REPL.
Got it, thank you, @U0ETXRFEW.