This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-03-07
Channels
- # announcements (12)
- # autochrome-github (4)
- # babashka (27)
- # babashka-sci-dev (2)
- # beginners (80)
- # calva (34)
- # cider (8)
- # clj-kondo (77)
- # clojars (34)
- # clojure (50)
- # clojure-europe (35)
- # clojure-nl (4)
- # clojure-uk (5)
- # clojured (2)
- # clojurescript (26)
- # core-async (4)
- # cursive (4)
- # datahike (4)
- # datomic (40)
- # emacs (7)
- # etaoin (1)
- # fulcro (12)
- # google-cloud (143)
- # hyperfiddle (1)
- # integrant (2)
- # jobs (1)
- # malli (15)
- # membrane (17)
- # off-topic (38)
- # pathom (1)
- # reagent (4)
- # releases (2)
- # remote-jobs (2)
- # sci (1)
- # shadow-cljs (10)
- # spacemacs (7)
- # tools-deps (5)
- # vim (6)
- # xtdb (37)
Announcing fixa - better test fixtures
https://github.com/oliyh/fixa
Why does clojure.test
limit us to a single set of :each
and :once
fixtures for all tests in a namespace?
Shouldn't we have the granularity of being able to apply particular fixtures to an individual test?
fixa lets you define fixtures at the individual test level using a simple metadata notation.
(deftest ^{:fixa/fixtures [fixture-a fixture-b]} multiple-fixtures-test
(is (= 1 1)))
You can use it with clojure.test and kaocha runners, see the readme for details.
Any feedback welcome!CIDER 1.3 ("Ukraine") is out! More details - https://github.com/clojure-emacs/cider/releases/tag/v1.3.0

Announcing the first alpha release of the https://github.com/cljdoc/cljdoc-check-actionhttps://github.com/cljdoc/cljdoc-check-action (v0.0.3) that runs CljDoc analysis on your project and fails if that fails - to make sure that you do not publish a version that http://cljdoc.org will not be able to import. Using it can be as simple as
# build your target/*.jar
- name: Check CljDoc
uses: cljdoc/[email protected]
- see the README for details. Many thanks to @lee and his indispensable help!
This is an alpha release. It seems to be working but e.g. I have not tested it on a broken project. Please try it out and report any problems! 🙏 
I hope so!