-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtests.edn
35 lines (34 loc) · 1.57 KB
/
tests.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#kaocha/v1
{:tests [{:id :unit-cljs
:type :kaocha.type/cljs
:source-paths ["src"]
:test-paths ["test"]
;; :cljs/repl-env cljs.repl.node/repl-env ; this is the default
:cljs/repl-env cljs.repl.browser/repl-env
:cljs/timeout 20000 ;; github ci needs more timeout?
:cljs/compiler-options
{:externs [#_"p5-externs.js"
"sparkles-externs.js"
"delaunator-externs.js"
"d3-delaunay-externs.js"]
:foreign-libs [#_{:file "node_modules/p5/lib/p5.js"
:file-min "node_modules/p5/lib/p5.min.js"
:provides ["cljsjs.p5"]
:global-exports {p5 P5}}
{:file "node_modules/sparkles/src/sparkles.js"
:provides ["sparkles"]}
{:file "node_modules/delaunator/delaunator.js"
:file-min "node_modules/delaunator/delaunator.min.js"
:provides ["delaunator"]}
{:file "node_modules/d3-delaunay/dist/d3-delaunay.js"
:file-min "node_modules/d3-delaunay/dist/d3-delaunay.min.js"
:provides ["d3-delaunay"]}]}
:infer-externs true}
{:id :unit-cljc
:type :kaocha.type/clojure.test
:source-paths ["src"]
:test-paths ["test"]}]
;; :capture-output? false
;; :bindings {kaocha.type.cljs/*debug* true}
:reporter [kaocha.report/documentation]
}