34 lines
1.3 KiB
Clojure
34 lines
1.3 KiB
Clojure
#kaocha/v1
|
|
{:tests [;; Global suites
|
|
{:id :unit
|
|
:test-paths ["test"]
|
|
:ns-patterns ["-unit-test$"]}
|
|
{:id :integration
|
|
:test-paths ["test"]
|
|
:ns-patterns ["-integration-test$"]}
|
|
{:id :e2e
|
|
:test-paths ["test"]
|
|
:ns-patterns ["-e2e-test$"]}
|
|
|
|
;; Module: shared
|
|
{:id :shared :test-paths ["test"]
|
|
:ns-patterns ["^ajet\\.chat\\.shared\\."]}
|
|
{:id :shared-unit :test-paths ["test"]
|
|
:ns-patterns ["^ajet\\.chat\\.shared\\..*-unit-test$"]}
|
|
{:id :shared-integration :test-paths ["test"]
|
|
:ns-patterns ["^ajet\\.chat\\.shared\\..*-integration-test$"]}
|
|
|
|
;; Module: api
|
|
{:id :api :test-paths ["test"]
|
|
:ns-patterns ["^ajet\\.chat\\.api\\."]}
|
|
{:id :api-unit :test-paths ["test"]
|
|
:ns-patterns ["^ajet\\.chat\\.api\\..*-unit-test$"]}
|
|
{:id :api-integration :test-paths ["test"]
|
|
:ns-patterns ["^ajet\\.chat\\.api\\..*-integration-test$"]}
|
|
|
|
;; Module: auth-gw
|
|
{:id :auth-gw :test-paths ["test"]
|
|
:ns-patterns ["^ajet\\.chat\\.auth-gw\\."]}
|
|
{:id :auth-gw-integration :test-paths ["test"]
|
|
:ns-patterns ["^ajet\\.chat\\.auth-gw\\..*-integration-test$"]}]}
|