The hooks plugin allows hooking into Kaocha's process with arbitrary functions. This is very similar to using writing a plugin, but requires less boilerplate.
See the documentation for extending Kaocha for a description of the different hooks. The supported hooks are: pre-load, post-load, pre-run, post-run, pre-test, post-test, pre-report.
#kaocha/v1
{:plugins [:kaocha.plugin/hooks]
:kaocha.hooks/pre-test [my.kaocha.hooks/sample-hook]}
(ns my.kaocha.hooks)
(println "ok")
(defn sample-hook [test test-plan]
(if (re-find #"fail" (str (:kaocha.testable/id test)))
(assoc test :kaocha.testable/pending true)
test))
(ns sample-test
(:require [clojure.test :refer :all]))
(deftest stdout-pass-test
(println "You peng zi yuan fang lai")
(is (= :same :same)))
(deftest stdout-fail-test
(println "Bu yi le hu?")
(is (= :same :not-same)))
When I run bin/kaocha
Then the output should contain:
PENDING sample-test/stdout-fail-test (sample_test.clj:8)
Can you improve this documentation? These fine people already did:
Arne Brasseur & Magnar SveenEdit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close