This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-08-24
Channels
- # babashka (9)
- # beginners (17)
- # biff (1)
- # calva (3)
- # cider (29)
- # clj-kondo (31)
- # clojure (59)
- # clojure-austin (12)
- # clojure-brasil (12)
- # clojure-europe (35)
- # clojure-nl (1)
- # clojure-norway (72)
- # clojure-uk (1)
- # clojurescript (15)
- # clr (4)
- # conjure (1)
- # cursive (2)
- # datahike (2)
- # emacs (3)
- # hyperfiddle (114)
- # introduce-yourself (1)
- # kaocha (3)
- # malli (7)
- # off-topic (19)
- # pathom (2)
- # polylith (5)
- # portal (5)
- # reitit (5)
- # shadow-cljs (2)
- # slack-help (4)
- # tools-deps (42)
- # xtdb (6)
I’m trying to use the hooks plugin to add a pre-test hook, but whenever I add the :kaocha.hooks/pre-test [my.hooks/some-hook]
my run fails in a spec error without ever running the hook
should contain keys: :kaocha.testable/id, :kaocha.testable/type
| key | spec |
|=======================+====================|
| :kaocha.testable/id | keyword? |
|-----------------------+--------------------|
| :kaocha.testable/type | qualified-keyword? |
-- Relevant specs -------
:kaocha/testable:
(clojure.spec.alpha/keys
:req
[:kaocha.testable/type :kaocha.testable/id]
:opt
[:kaocha.testable/meta :kaocha.testable/wrap])