(find-and-run-tests-cli options)
clojure -X
entrypoint. Find and run tests with options
.
`clojure -X` entrypoint. Find and run tests with `options`.
(find-and-run-tests-repl options)
REPL entrypoint. Find and run tests with options.
REPL entrypoint. Find and run tests with options.
(find-tests arg options)
Find test vars in arg
, which can be a string directory name, symbol naming a specific namespace or test, or a
collection of one or more of the above.
Find test vars in `arg`, which can be a string directory name, symbol naming a specific namespace or test, or a collection of one or more of the above.
(find-tests-with-options {:keys [only] :as options})
Find tests using the options map as passed to clojure -X
.
Find tests using the options map as passed to `clojure -X`.
(run-test test-var)
Run a single test test-var
. Wraps/replaces [[clojure.test/test-var]].
Run a single test `test-var`. Wraps/replaces [[clojure.test/test-var]].
(run-tests test-vars)
(run-tests test-vars options)
Run test-vars
with options
, which are passed directly to [[eftest.runner/run-tests]].
To run tests from the REPL, use this function.
;; run tests in a single namespace (run (find-tests 'metabase.bad-test nil))
;; run tests in a directory (run (find-tests "test/hawk/query_processor_test" nil))
Run `test-vars` with `options`, which are passed directly to [[eftest.runner/run-tests]]. To run tests from the REPL, use this function. ;; run tests in a single namespace (run (find-tests 'metabase.bad-test nil)) ;; run tests in a directory (run (find-tests "test/hawk/query_processor_test" nil))
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close