This patch uses the wonderful cgrand/macrovich for supporting both JVM and self-host ClojureScript. The library avoids destructive code changes, no namespaces were moved. The patch also adds a runner for self-host tests by adding the lein-tach plugin. Tests can be launched with: lein tach lumo (or planck) See the lein-tach README for details.
9 lines
243 B
Clojure
9 lines
243 B
Clojure
(ns honeysql.self-host-runner
|
|
(:require [cljs.test :as t :refer-macros [run-tests]]
|
|
honeysql.core-test
|
|
honeysql.format-test))
|
|
|
|
(enable-console-print!)
|
|
|
|
(run-tests 'honeysql.core-test
|
|
'honeysql.format-test)
|