Skip to content

Commit f1d75e4

Browse files
author
Bozhidar Batsov
committed
Mention cider-test-show-report-on-success in the README
1 parent 524dea5 commit f1d75e4

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

README.md

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff 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.
356370
Note that the history is written to the file when you kill the REPL
357371
buffer (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

366375
Out-of-the box `CIDER` uses the standard `completing-read` Emacs mechanism. While it's not

0 commit comments

Comments
 (0)