We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b49481 commit a4fa364Copy full SHA for a4fa364
1 file changed
bb.edn
@@ -2,8 +2,14 @@
2
{lambdaisland/open-source {:git/url "https://github.com/lambdaisland/open-source"
3
:git/sha "f2133b2a88bff3898e027c9b50516161c237792e"}}
4
:tasks
5
- {test:bb {:doc "Run babashka tests with custom runner"
+ {:requires ([babashka.fs :as fs])
6
+ test:bb {:doc "Run babashka tests with custom runner"
7
:extra-paths ["src" "test"]
8
:extra-deps {current/project {:local/root "."}
9
org.clojure/test.check {:mvn/version "1.1.1"}}
- :task (exec 'lambdaisland.deep-diff2.runner/run-tests)}}}
10
+ :task (exec 'lambdaisland.deep-diff2.runner/run-tests)}
11
+ npm-ws (when-not (fs/exists? "node_modules/ws")
12
+ (shell "npm install ws"))
13
+ test:clj {:doc "Run kaocha tests"
14
+ :depends [npm-ws]
15
+ :task (apply clojure "-M:dev:test -m kaocha.runner" *command-line-args*)}}}
0 commit comments