-
Notifications
You must be signed in to change notification settings - Fork 0
/
tests.edn
40 lines (35 loc) · 2.07 KB
/
tests.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#kaocha/v1
{:kaocha/fail-fast? false
:kaocha/color? true
:kaocha/reporter [kaocha.report/documentation]
:kaocha.plugin.randomize/randomize? true
:capture-output? true
:plugins [:kaocha.plugin/capture-output
:kaocha.plugin/cloverage
:kaocha.plugin/filter
:kaocha.plugin/hooks
:kaocha.plugin/notifier
:kaocha.plugin/print-invocations
:kaocha.plugin/randomize
:kaocha.plugin.alpha/info]
:tests [{:id :clojure
:source-paths ["src/main/clojure"]
:test-paths ["src/test/clojure"]}
{:id :clojurescript
:type :kaocha.type/cljs
:source-paths ["src/main/clojure"]
:test-paths ["src/test/clojure"]}]
:cloverage/opts {:output "coverage"
:ns-regex []
:ns-exclude-regex []
:fail-threshold 0
:low-watermark 50
:high-watermark 80
:summary? true
:text? false
:emma-xml? false
:html? true
:nop? false
:lcov? false
:coveralls? false
:codecov? true}}