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