This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-04-28
Channels
- # asami (13)
- # babashka (6)
- # beginners (38)
- # calva (14)
- # cider (15)
- # circleci (13)
- # clj-kondo (4)
- # cljsrn (18)
- # clojure (164)
- # clojure-bay-area (3)
- # clojure-europe (46)
- # clojure-italy (8)
- # clojure-losangeles (3)
- # clojure-norway (3)
- # clojure-sweden (24)
- # clojure-uk (115)
- # clojurescript (79)
- # cursive (11)
- # datomic (24)
- # docker (2)
- # events (9)
- # figwheel-main (31)
- # fulcro (5)
- # honeysql (6)
- # jackdaw (7)
- # jobs (3)
- # jobs-discuss (16)
- # joker (1)
- # kaocha (6)
- # keechma (1)
- # lein-figwheel (1)
- # malli (6)
- # pathom (10)
- # podcasts-discuss (13)
- # practicalli (3)
- # react (4)
- # reagent (3)
- # reitit (8)
- # remote-jobs (3)
- # shadow-cljs (21)
- # sql (12)
- # tools-deps (20)
- # xtdb (24)
Hi there, we bumped our kaocha versions and I started receiving this error message multiple times on failure
1 tests, 1 assertions, 1 errors, 0 failures.
ERROR: Error in reporter: class java.lang.NullPointerException when processing
ERROR: Error in reporter: class java.lang.NullPointerException when processing
ERROR: Error in reporter: class java.lang.NullPointerException when processing
ERROR: Error in reporter: class java.lang.NullPointerException when processing
ERROR: Error in reporter: class java.lang.NullPointerException when processing
ERROR: Error in reporter: class java.lang.NullPointerException when processing
ERROR: Error in reporter: class java.lang.NullPointerException when processing
ERROR: Error in reporter: class java.lang.NullPointerException when processing
ERROR: Error in reporter: class java.lang.NullPointerException when processing
Has anybody else seen this?it seems like the only reporter I have got is
:reporter [kaocha.report/documentation]
will do and write back
this is the tests.edn
#kaocha/v1
{:tests [{:id :unit
:type :kaocha.type/clojure.test
:ns-patterns ["-test$"]
:skip-meta [:database :stress]
:test-paths ["test"]
:source-paths ["src"]}
{:id :database
:type :kaocha.type/clojure.test
:ns-patterns ["-test$"]
:focus-meta [:database]
:test-paths ["test"]
:source-paths ["src"]}
{:id :integration
:type :kaocha.type/clojure.test
:ns-patterns ["-test$"]
:focus-meta [:database :stress]
:test-paths ["test" "itest"]
:source-paths ["src"]}]
:plugins [:kaocha.plugin/junit-xml
:kaocha.plugin/cloverage
:kaocha.plugin/profiling
:kaocha.plugin/hooks]
:reporter [kaocha.report/documentation]
:kaocha.testable/skip-add-classpath? false
:kaocha.hooks/pre-test [appserver.test-utils/spec-instrumentation-hook]
:kaocha.plugin.junit-xml/target-file "target/test/junit.xml"
:cloverage/opts {:ns-exclude-regex ["tools.*"]
:summary? false
:high-watermark 70
:fail-threshold 30
:low-watermark 40}}
it also seems like expound is not hooked up anymore...