This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-10-02
Channels
- # 100-days-of-code (1)
- # announcements (2)
- # beginners (122)
- # boot (5)
- # calva (5)
- # cider (54)
- # cljdoc (1)
- # clojure (132)
- # clojure-brasil (1)
- # clojure-italy (4)
- # clojure-nl (6)
- # clojure-uk (105)
- # clojurescript (43)
- # core-async (17)
- # cursive (14)
- # datomic (60)
- # emacs (35)
- # figwheel-main (44)
- # fulcro (70)
- # graphql (1)
- # jobs (19)
- # jobs-discuss (5)
- # leiningen (5)
- # luminus (2)
- # off-topic (40)
- # onyx (2)
- # overtone (5)
- # re-frame (36)
- # reagent (29)
- # ring-swagger (20)
- # rum (13)
- # shadow-cljs (19)
- # testing (5)
- # tools-deps (25)
- # vim (5)
Is there a way in clojure.test
to perform tasks before / after all tests are run? Like the :once
fixture, but for all tests instead of per-namespace.
Use cases include checking that DB is connected, running migrations, etc.
https://github.com/circleci/circleci.test supports global fixtures.
@xiongtx Not as far as I know. I've often wished for that (but I have a suspicion the lack of it is to discourage reliance of an entire test suite on environmental side effects -- by forcing you to consider setup & teardown for each group of tests independently).