-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathbb.edn
More file actions
23 lines (20 loc) · 762 Bytes
/
Copy pathbb.edn
File metadata and controls
23 lines (20 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{:paths ["src" "test"]
:tasks
{test:bb
{:doc "Run tests under babashka"
:extra-deps {io.github.cognitect-labs/test-runner
{:git/tag "v0.5.1" :git/sha "dfb30dd6605cb6c0efc275e1df1736f6e90d4d73"}
org.clojure/test.check {:mvn/version "1.1.1"}}
:task (exec 'cognitect.test-runner.api/test)}
test:cljs
{:doc "Run tests under ClojureScript with advanced compilation"
:task (shell "clojure -M:dev:test-cljs")}
test:squint
{:doc "Run tests under squint"
:task (do (shell "npm install")
(shell "npm test"))}
test:cherry
{:doc "Run tests under cherry"
:task (do (shell "npm install")
(shell "npx cherry compile")
(shell "node cherry-lib/replicant/run_tests.mjs"))}}}