File tree Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -333,6 +333,20 @@ helpful for identifying each host.
333333(setq cider-known-endpoints '(("host-a" "10.10.10.1" "7888") ("host-b" "7888")))
334334```
335335
336+ ### Running tests
337+
338+ * If your tests are not following the ` some.ns-test ` naming convention you can
339+ customize the variable ` cider-test-infer-test-ns ` . It should be bound to a
340+ function that takes the current ns and returns the matching test ns (which may
341+ be the same as the current ns).
342+
343+ * If you want to view the test report regardless of whether the tests have
344+ passed or failed:
345+
346+ ``` el
347+ (setq cider-test-show-report-on-success t)
348+ ```
349+
336350### REPL History
337351
338352* To make the REPL history wrap around when its end is reached:
@@ -356,11 +370,6 @@ helpful for identifying each host.
356370Note that the history is written to the file when you kill the REPL
357371buffer (which includes invoking ` cider-quit ` ) or you quit Emacs.
358372
359- * If your tests are not following the ` some.ns-test ` naming convention you can
360- customize the variable ` cider-test-infer-test-ns ` . It should be bound to a
361- function that takes the current ns and returns the matching test ns (which may
362- be the same as the current ns).
363-
364373### Minibuffer completion
365374
366375Out-of-the box ` CIDER ` uses the standard ` completing-read ` Emacs mechanism. While it's not
You can’t perform that action at this time.
0 commit comments