babashka/test-resources/lib_tests/portal/test_runner.clj
Gabriel Horner 78a05139cb Add a number of library tests from projects.md
Also add more docs around adding test libs and tweak add script
2021-12-28 09:23:37 -05:00

14 lines
406 B
Clojure

(ns portal.test-runner
(:require [clojure.test :refer [run-tests]]
[portal.jvm-test]
[portal.runtime.cson-test]
[portal.runtime.fs-test]))
(defn -main []
(let [{:keys [fail error]}
(run-tests 'portal.jvm-test
'portal.runtime.cson-test
'portal.runtime.fs-test)]
(shutdown-agents)
(System/exit (+ fail error))))