test_runner.cljs 285 B

123456789
  1. ;; This test runner is intended to be run from the command line
  2. (ns pos-demo.test-runner
  3. (:require
  4. ;; require all the namespaces that you want to test
  5. [pos-demo.core-test]
  6. [figwheel.main.testing :refer [run-tests-async]]))
  7. (defn -main [& args]
  8. (run-tests-async 5000))