(install!)
(install! opts)
Improves output of clojure.test. Possible options:
:capture-output? <bool> :: Whether output of successful tests should be silenced. True by default.
Improves output of clojure.test. Possible options: :capture-output? <bool> :: Whether output of successful tests should be silenced. True by default.
(run & args)
Universal test runner that accepts everything: namespaces, vars, symbols, regexps. Replaces run-tests, run-all-tests, run-test-var, run-test.
First argument can be a map of options:
:randomize? <bool> :: Whether to randomize test order or not. True by deafult. :capture-output? <bool> :: Whether output of successful tests should be silenced. Overrides :capture-output? from install!
Supports focusing tests: add ^:only to deftest var and only this test will run.
If invoked with no arguments, runs all tests.
Universal test runner that accepts everything: namespaces, vars, symbols, regexps. Replaces run-tests, run-all-tests, run-test-var, run-test. First argument can be a map of options: :randomize? <bool> :: Whether to randomize test order or not. True by deafult. :capture-output? <bool> :: Whether output of successful tests should be silenced. Overrides :capture-output? from install! Supports focusing tests: add ^:only to deftest var and only this test will run. If invoked with no arguments, runs all tests.
(uninstall!)
Restore default clojure.test behaviour
Restore default clojure.test behaviour
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close