milestone 1+2

This commit is contained in:
Gabriel Horner
2026-03-05 08:40:49 -05:00
committed by rcmerci
parent 830e078217
commit 7b2ef7fce2
7 changed files with 1147 additions and 1013 deletions

View File

@@ -18,7 +18,8 @@
"Run tests. Pass args through to cmd 'yarn cljs:run-test'"
[& args]
(shell "yarn cljs:test")
(apply shell "yarn cljs:run-test" args))
(let [args* (or (seq args) ["-e" "long" "-e" "fix-me"])]
(apply shell "yarn cljs:run-test" args*)))
(defn test-no-worker
"Run tests without compiling worker namespaces. Pass args through to cmd 'yarn cljs:run-test-no-worker'"
@@ -31,7 +32,7 @@
pass args through to cmd 'yarn cljs:run-test'"
[]
(dev-lint/dev)
(test "-e" "long" "-e" "fix-me"))
(test))
(defn e2e-basic-test
"Run e2e basic tests. HTTP server should be available at localhost:3001"