@@ -60,7 +60,6 @@ specific CIDER release.**
60
60
- [ Configuration] ( #configuration )
61
61
- [ Basic configuration] ( #basic-configuration )
62
62
- [ Specifying indentation] ( #specifying-indentation )
63
- - [ Running tests] ( #running-tests )
64
63
- [ Code reloading] ( #code-reloading )
65
64
- [ Minibuffer completion] ( #minibuffer-completion )
66
65
- [ Auto-completion] ( #auto-completion )
@@ -701,6 +700,20 @@ Keyboard shortcut | Description
701
700
<kbd >d</kbd > | Display diff of actual vs expected.
702
701
<kbd >e</kbd > | Display test error cause and stacktrace info.
703
702
703
+ Certain aspects of the test execution behavior are configurable:
704
+
705
+ * If your tests are not following the ` some.ns-test ` naming convention you can
706
+ customize the variable ` cider-test-infer-test-ns ` . It should be bound to a
707
+ function that takes the current ns and returns the matching test ns (which may
708
+ be the same as the current ns).
709
+
710
+ * If you want to view the test report regardless of whether the tests have
711
+ passed or failed:
712
+
713
+ ``` el
714
+ (setq cider-test-show-report-on-success t)
715
+ ```
716
+
704
717
### Navigating stacktraces
705
718
706
719
CIDER comes with a powerful solution to the problem of verbose Clojure
@@ -1042,20 +1055,6 @@ Don't worry if this looks intimidating. For most macros the indent spec should
1042
1055
be either just a number, or one of the keywords ` :defn ` or ` :form ` . A full
1043
1056
description of the spec is provided in [ Indent-Spec.md] ( Indent-Spec.md ) .
1044
1057
1045
- ### Running tests
1046
-
1047
- * If your tests are not following the ` some.ns-test ` naming convention you can
1048
- customize the variable ` cider-test-infer-test-ns ` . It should be bound to a
1049
- function that takes the current ns and returns the matching test ns (which may
1050
- be the same as the current ns).
1051
-
1052
- * If you want to view the test report regardless of whether the tests have
1053
- passed or failed:
1054
-
1055
- ``` el
1056
- (setq cider-test-show-report-on-success t)
1057
- ```
1058
-
1059
1058
### Code reloading
1060
1059
1061
1060
* ` cider-refresh ` wraps
0 commit comments