Kaocha will warn about common mistakes.
(ns my.foo-test
(:require [clojure.test :refer :all]))
(deftest var-test
(is (= 456 456)))
When I run bin/kaocha -c alt-tests.edn
Then stderr should contain:
Did not load a configuration file and using the defaults.
#kaocha/v1
{:plugins notifier}
(ns my.foo-test
(:require [clojure.test :refer :all]))
(deftest var-test
(is (= 456 456)))
When I run bin/kaocha
Then stderr should contain:
Invalid configuration file:
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close