-
Notifications
You must be signed in to change notification settings - Fork 1
/
tests.edn
28 lines (27 loc) · 1.35 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
#kaocha/v1
{:tests [{:id :unit
:ns-patterns ["-test$"]
:test-paths ["src/test"]
:skip-meta [:integration]
:source-paths ["src/main"]}
{:id :generative-fdef-checks
:type :kaocha.type/spec.test.check
:source-paths ["src/main/decide/models/process.cljc"
"src/main/decide/models/argumentation.cljc"
"src/main/decide/models/opinion.cljc"
"src/main/decide/routes.cljc"]
:clojure.spec.test.check/opts {}}]
:reporter [kaocha.report/documentation]
:plugins #profile {:default [:kaocha.plugin/randomize
:kaocha.plugin/filter
:kaocha.plugin/capture-output]
:ci [:kaocha.plugin/randomize
:kaocha.plugin/filter
:kaocha.plugin/capture-output
:kaocha.plugin/profiling
:kaocha.plugin/junit-xml]}
:kaocha.plugin.junit-xml/target-file "junit.xml"
:bindings {kaocha.stacktrace/*stacktrace-filters*
["java.lang." "java.util.concurrent."
"clojure.test$" "clojure.lang." "clojure.core" "clojure.main"
"orchestra." "kaocha."]}}