-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtests.edn
47 lines (40 loc) · 2.43 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
41
42
43
44
45
46
47
#kaocha/v1
{:kaocha/fail-fast? false
:kaocha/color? true
:kaocha/reporter [kaocha.report/documentation]
:kaocha.plugin.randomize/randomize? true
:kaocha.plugin.profiling/count 3
:kaocha.plugin.profiling/profiling? true
:capture-output? true
:plugins [:kaocha.plugin/randomize
:kaocha.plugin/filter
:kaocha.plugin/capture-output
:kaocha.plugin/profiling
:kaocha.plugin/cloverage
:kaocha.plugin/print-invocations
:kaocha.plugin/hooks
:kaocha.plugin/notifier
:kaocha.plugin.alpha/info]
:tests [{:id :unit
:source-paths ["src"]
;; :test-paths ["test/src"]
:focus-meta [:unit]}
;;{:id :integration
;; :source-paths ["src"]
;; :test-paths ["test/src"]
;; :focus-meta [:integration]}
]
:cloverage/opts {:output "target/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}}