13 lines
325 B
Clojure
13 lines
325 B
Clojure
{:tasks
|
|
{test
|
|
{:doc "Run all shared module tests"
|
|
:task (shell {:dir ".."} "bb test:shared")}
|
|
|
|
test:unit
|
|
{:doc "Run shared unit tests only"
|
|
:task (shell {:dir ".."} "bb test:shared:unit")}
|
|
|
|
test:integration
|
|
{:doc "Run shared integration tests"
|
|
:task (shell {:dir ".."} "bb test:shared:integration")}}}
|