-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtests.edn
More file actions
53 lines (49 loc) · 1.82 KB
/
tests.edn
File metadata and controls
53 lines (49 loc) · 1.82 KB
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
48
49
50
51
52
53
#kaocha/v1
{:plugins [:kaocha.plugin/randomize
:kaocha.plugin/filter
;:kaocha.plugin/capture-output
:kaocha.plugin/junit-xml
:kaocha.plugin/cloverage]
:reporter [kaocha.report/documentation]
:color? true
:fail-fast? false
:kaocha.plugin.junit-xml/target-file "target/test-reports/report.xml"
:cloverage/opts {:ns-exclude-regex [],
:text? false,
:lcov? true,
:high-watermark 80,
:fail-threshold 0,
:output #or [#env CLOVERAGE_OUTPUT "target/coverage"],
:low-watermark 50,
:ns-regex [],
:summary? true,
:coveralls? false,
:emma-xml? false,
:html? true,
:nop? false,
:codecov? true}
:bindings {kaocha.type.cljs/*debug* false}
:tests [
;; skip jdbc and fdb
{:id :in-memory
:kaocha.filter/skip-meta [:integration]
:ns-patterns ["-test$"]
:source-paths ["src"]
:test-paths ["test"]}
;; jvm based tests
{:id :test
;:kaocha.filter/skip-meta [:crash]
:ns-patterns ["-test$"]
:source-paths ["src"]
:test-paths ["test"]}
{:id :test-cljs
:type :kaocha.type/cljs
:cljs/repl-env cljs.repl.node/repl-env
;:cljs/timeout 20000
:ns-patterns ["-test$"]
:source-paths ["src"]
:test-paths ["test"]}]}
;; :test-paths ["test"]
;; :cljs/timeout 10000 ; 10 seconds, the default
;; :cljs/repl-env cljs.repl.node/repl-env ; node is the default
;; :cljs/repl-env cljs.repl.browser/repl-env