Skip to content

Commit a81c8b7

Browse files
committed
Add changelog entry
1 parent f0d786a commit a81c8b7

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
### New features
66

7+
- [#3278](https://github.com/clojure-emacs/cider/pull/3278) Introduce integration tests, which also fix a long standing issue with orphaned process on MS-Windows by contracting `taskkill`, if available, to properly kill the nREPL server process tree.
78
- [#3249](https://github.com/clojure-emacs/cider/pull/3249): Add support for Clojure Spec 2.
89
- [#3247](https://github.com/clojure-emacs/cider/pull/3247) Add the `cider-stacktrace-analyze-at-point` and `cider-stacktrace-analyze-in-region` commands to view printed exceptions in the stacktrace inspector.
910

doc/modules/ROOT/pages/contributing/hacking.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Run integration tests with:
9595

9696
$ eldev[.bat] test --test-type integration
9797

98-
or all tests with
98+
or all tests with:
9999

100100
$ eldev[.bat] test --test-type all
101101

test/integration/integration-tests.el

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Remove the temp directory at the end of evaluation."
5050
;; very long time to bring up/respond/shutdown, and thus sleep duration values
5151
;; are set rather high.
5252

53-
(it "to bb"
53+
(it "to babashka"
5454
(with-temp-dir temp-dir
5555
;; set up a project directory in temp
5656
(let* ((project-dir temp-dir)
@@ -221,9 +221,9 @@ Remove the temp directory at the end of evaluation."
221221
(nrepl-tests-sleep-until 15 (not (eq (process-status nrepl-proc) 'run)))
222222
(expect (member (process-status nrepl-proc) '(exit signal)))))
223223
(when-let ((nrepl-error-buffer (get-buffer "*nrepl-error*")))
224-
(with-current-buffer nrepl-error-buffer
225-
(message ":*nrepl-error* %S"
226-
(substring-no-properties (buffer-string))))))))))))
224+
(with-current-buffer nrepl-error-buffer
225+
(message ":*nrepl-error* %S"
226+
(substring-no-properties (buffer-string))))))))))))
227227

228228
(provide 'integration-tests)
229229

0 commit comments

Comments
 (0)