File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
doc/modules/ROOT/pages/testing Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -83,6 +83,8 @@ kbd:[C-c C-t t] or kbd:[C-c C-t C-t].
8383
8484You can configure CIDER's test execution behavior in multiple ways.
8585
86+ === Test Namespace Naming Convention
87+
8688If your tests are not following the `some.ns-test` naming convention
8789you can set the variable `cider-test-infer-test-ns` to a function that
8890takes the current namespace and returns the matching test namespace
@@ -105,12 +107,17 @@ This uses the convention of prepending 'test-' to the namespace name."
105107(setq cider-test-infer-test-ns #'cider-custom-test-ns-fn)
106108----
107109
110+ === Macros Used to Define Tests
111+
108112If your individual tests are not defined by `deftest` or `defspec`, CIDER will
109113not recognize them when searching for a test at point in `cider-test-run-test`.
110114You can customize the variable `cider-test-defining-forms` to add additional
111115forms for CIDER to recognize as individual test definitions.
112116
113- If you want to view the test report regardless of whether the tests have
117+ === Display Test Report on Success
118+
119+ By default the test report is displayed only when there are test failures or
120+ errors. If you want to view the test report regardless of whether the tests have
114121passed or failed:
115122
116123[source,lisp]
You can’t perform that action at this time.
0 commit comments