-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtests.edn
More file actions
21 lines (19 loc) · 832 Bytes
/
tests.edn
File metadata and controls
21 lines (19 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#kaocha/v1
{
:capture-output? false
;:bindings {kaocha.type.cljs/*debug* true}
:tests [{:id :unit-cljs
:type :kaocha.type/cljs
:test-paths ["test"]
:cljs/timeout 30000 ; 10 seconds, the default
:cljs/repl-env cljs.repl.browser/repl-env ; needed for 'window' to be defined
;; :cljs/repl-env cljs.repl.node/repl-env ;
;; :cljs/repl-env figwheel.repl/repl-env ; figwheel index doesnt have main.js
;; debugging
:cljs/precompile? true
;; https://clojurescript.org/reference/repl-options
;; try to use a specific index.html
;:repl-opts {:static-dir ["test/" "." "out/"]}
:cljs/compiler-options {:port 9001
:launch-browser true}
}]}