three-cljs-playground/test/three_playground/test_runner.cljs

10 lines
301 B
Plaintext
Raw Permalink Normal View History

2019-11-08 15:14:01 +00:00
;; 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))