honeysql/test/honeysql/self_host_runner.cljs
Andrea Richiardi 65037939b2 [Fix #167] Add ClojureScript self-host support
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.
2017-11-01 10:13:47 -07:00

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)