forked from jekyllislandtours/conceptual
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtests.edn
More file actions
23 lines (23 loc) · 894 Bytes
/
tests.edn
File metadata and controls
23 lines (23 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#kaocha/v1
{;;:bindings {conceptual.test.config/*sample-flag?* false}
:kaocha.hooks/pre-run [conceptual.test.core/kaocha-pre-hook!]
:kaocha.hooks/post-run [conceptual.test.core/kaocha-post-hook!]
:tests [{:id :default
:test-paths ["test"]
:skip-meta [:slow :generative :integration]}
{:id :slow
:test-paths ["test"]
:focus-meta [:slow]}
{:id :generative
:test-paths ["test"]
:focus-meta [:generative]}
{:id :integration
:test-paths ["test"]
:focus-meta [:integration]}]
:plugins [:hooks
:kaocha.plugin/profiling
:kaocha.plugin/print-invocations
:kaocha.plugin/notifier]
:reporter kaocha.report/documentation
:cli-options
{:config-file "test/tests.edn", :print-config true}}