-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtests.edn
36 lines (36 loc) · 2.26 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
{:kaocha/tests
[{:kaocha.testable/type :kaocha.type/clojure.test
:kaocha.testable/id :unit
:kaocha/ns-patterns ["-test$"]
:kaocha/source-paths ["src"]
:kaocha/test-paths ["test/unit"]}]
:kaocha/fail-fast? false
:kaocha/color? true
:kaocha/plugins [:kaocha.plugin/randomize
:kaocha.plugin/filter
:kaocha.plugin/capture-output
:kaocha.plugin/print-invocations
:kaocha.plugin/profiling
:kaocha.plugin/notifier
:kaocha.plugin/cloverage
:kaocha.plugin.alpha/spec-test-check]
:kaocha/reporter [kaocha.report/documentation]
:kaocha.plugin.capture-output/capture-output? true
:kaocha.plugin.profiling/count 3
:kaocha.plugin.randomize/seed 492209631
:kaocha.plugin.randomize/randomize? true
:kaocha.plugin.notifier/command "bin/test-notifier %{message} %{title} %{icon} %{failed?}"
:cloverage/opts {:ns-exclude-regex []
:text? false
:lcov? false
:high-watermark 80
:fail-threshold 0
:output "target/coverage"
:low-watermark 50
:ns-regex []
:summary? true
:coveralls? false
:emma-xml? false
:html? true
:nop? false
:codecov? true}}