-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtests.edn
More file actions
32 lines (30 loc) 路 965 Bytes
/
Copy pathtests.edn
File metadata and controls
32 lines (30 loc) 路 965 Bytes
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
#kaocha/v1
{:tests
[{:id :unit
:test-paths ["test"]
:ns-patterns ["^llar\\.(?!db\\.).*-test$"]
:reporter [kaocha.report/documentation]}
{:id :integration
:test-paths ["test"]
:ns-patterns ["^llar\\.db\\..*-test$"]
:kaocha.plugin.randomize/randomize? false
:kaocha.plugin.profiling/profiling? true
:reporter [kaocha.report/documentation]}]
:plugins [:kaocha.plugin/randomize
:kaocha.plugin/filter
:kaocha.plugin/capture-output
:kaocha.plugin/profiling
:kaocha.plugin.alpha/spec-test-check
:kaocha.plugin/cloverage
:kaocha.plugin/junit-xml]
:kaocha.plugin.junit-xml/target-file "target/junit.xml"
:cloverage/opts {:output "target/coverage"
:codecov? true
:html? true
:emma-xml? false
:text? true
:summary? true}
:color? true
:fail-fast? false
:randomize? true
:watch? false}