babashka/test-resources/lib_tests/markdown/nbb_runner.cljs
Gabriel Horner c0588be686 Add tests for markdown-clj and tools.namespace
See comment for why only one markdown test could be run.
Closes #1069 and #1064
2021-12-28 09:23:36 -05:00

10 lines
263 B
Clojure

(ns nbb-runner
(:require [clojure.string :as str]
[clojure.test :refer [run-tests]]
[nbb.classpath :as cp]))
(cp/add-classpath (str/join ":" ["src/cljs" "src/cljc" "test"]))
(require '[markdown.md-test])
(run-tests 'markdown.md-test)