File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 4
4
5
5
### New Features
6
6
7
+ * ` f ` key reruns failed tests on the test-report buffer.
8
+ * ` g ` key reruns test at point on the test-report buffer.
7
9
* Debugger now supports step-in.
8
10
* Improve CIDER's menu-bar menu:
9
11
- Thoroughly reorganize it and split it into 3 separate menus;
Original file line number Diff line number Diff line change 164
164
(define-key map (kbd " t" ) #'cider-test-jump )
165
165
(define-key map (kbd " d" ) #'cider-test-ediff )
166
166
(define-key map (kbd " e" ) #'cider-test-stacktrace )
167
+ ; ; `f' for "run failed".
168
+ (define-key map " f" #'cider-test-rerun-tests )
169
+ ; ; `g' generally reloads the buffer. The closest thing we have to that is
170
+ ; ; "run the test at point". But it's not as nice as rerunning all tests in
171
+ ; ; this buffer.
172
+ (define-key map " g" #'cider-test-run-test )
167
173
(define-key map " q" #'cider-popup-buffer-quit-function )
168
174
(easy-menu-define cider-test-report-mode-menu map
169
175
" Menu for CIDER's test result mode"
You can’t perform that action at this time.
0 commit comments