three-cljs-playground/test/three_playground/test_runner.cljs
Jeremy Dormitzer 81964a0d73 Initial commit
2019-11-08 10:14:01 -05:00

10 lines
301 B
Clojure

;; This test runner is intended to be run from the command line
(ns three-playground.test-runner
(:require
;; require all the namespaces that you want to test
[three-playground.core-test]
[figwheel.main.testing :refer [run-tests-async]]))
(defn -main [& args]
(run-tests-async 5000))