-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtests.edn
33 lines (30 loc) · 1.04 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
#kaocha/v1
{:capture-output? true
:kaocha.plugin.randomize/randomize? true
:kaocha/color? true
:kaocha/fail-fast? false
:kaocha/reporter [kaocha.report/documentation]
:plugins [:kaocha.plugin.alpha/info
:kaocha.plugin/capture-output
:kaocha.plugin/cloverage
:kaocha.plugin/filter
:kaocha.plugin/hooks
:kaocha.plugin/print-invocations
:kaocha.plugin/randomize]
:tests [{:id :unit
:focus-meta [:unit]
:source-paths ["src/main/clojure"]
:test-paths ["src/test/clojure"]}
{:id :integration
:focus-meta [:integration]
: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
:html? true
:codecov? true}}