-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtests-component-isolated.edn
More file actions
56 lines (47 loc) · 1.53 KB
/
tests-component-isolated.edn
File metadata and controls
56 lines (47 loc) · 1.53 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
54
55
56
#kaocha/v1
{:tests
[{:id :agent-core
:test-paths ["components/agent-core/test"]
:source-paths ["components/agent-core/src"]
:ns-patterns [".*-test$"]}
{:id :memory
:test-paths ["components/memory/test"]
:source-paths ["components/memory/src"]
:ns-patterns [".*-test$"]}
{:id :query
:test-paths ["components/query/test"]
:source-paths ["components/query/src"]
:ns-patterns [".*-test$"]}
{:id :engine
:test-paths ["components/engine/test"]
:source-paths ["components/engine/src"]
:ns-patterns [".*-test$"]}
{:id :history
:test-paths ["components/history/test"]
:source-paths ["components/history/src"]
:ns-patterns [".*-test$"]}
{:id :recursion
:test-paths ["components/recursion/test"]
:source-paths ["components/recursion/src"]
:ns-patterns [".*-test$"]}
{:id :ai
:test-paths ["components/ai/test"]
:source-paths ["components/ai/src"]
:ns-patterns [".*-test$"]}
{:id :app-runtime
:test-paths ["components/app-runtime/test"]
:source-paths ["components/app-runtime/src"]
:ns-patterns [".*-test$"]}
{:id :tui
:test-paths ["components/tui/test"]
:source-paths ["components/tui/src"]
:ns-patterns [".*-test$"]}]
:color? true
:fail-fast? false
:capture-output? true
:reporter [kaocha.report/dots]
:plugins [:kaocha.plugin/hooks]
:cloverage/opts {:ns-exclude-regex [".*-test$"]}
:kaocha.hooks/pre-run [psi.test-hooks/pre-run]
:kaocha.hooks/post-summary [psi.test-hooks/post-summary]
:skip-meta [:integration]}