honeysql/test-lein/honeysql/test.cljs
Sean Corfield 97868812c1 Prepare to switch from lein to CLI/deps.edn
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.
2020-03-06 15:11:44 -08:00

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)