This starts the cleanup of the project so I can use cljs-test-runner via the CLI. The next big cleanup will be removing macrovich.
9 lines
249 B
Clojure
9 lines
249 B
Clojure
(ns honeysql.test
|
|
(:require
|
|
[doo.runner :refer-macros [doo-tests]]
|
|
[cljs.test :as t :refer-macros [is are deftest testing]]
|
|
honeysql.core-test
|
|
honeysql.format-test))
|
|
|
|
(doo-tests 'honeysql.core-test
|
|
'honeysql.format-test)
|