emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/cider b2c3d3ca2d 2/4: Add changelog entry


From: ELPA Syncer
Subject: [nongnu] elpa/cider b2c3d3ca2d 2/4: Add changelog entry
Date: Thu, 8 Dec 2022 10:58:40 -0500 (EST)

branch: elpa/cider
commit b2c3d3ca2d082122fe81e6a211009d852c08b800
Author: ikappaki <ikappaki@users.noreply.github.com>
Commit: Bozhidar Batsov <bozhidar@batsov.dev>

    Add changelog entry
---
 CHANGELOG.md                                     | 1 +
 doc/modules/ROOT/pages/contributing/hacking.adoc | 2 +-
 test/integration/integration-tests.el            | 8 ++++----
 3 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 071ea60aaf..aeff6ca039 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,7 @@
 
 ### New features
 
+- [#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.
 - [#3249](https://github.com/clojure-emacs/cider/pull/3249): Add support for 
Clojure Spec 2.
 - [#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.
 
diff --git a/doc/modules/ROOT/pages/contributing/hacking.adoc 
b/doc/modules/ROOT/pages/contributing/hacking.adoc
index 42247f4b1d..19b8ece460 100644
--- a/doc/modules/ROOT/pages/contributing/hacking.adoc
+++ b/doc/modules/ROOT/pages/contributing/hacking.adoc
@@ -95,7 +95,7 @@ Run integration tests with:
 
  $ eldev[.bat] test --test-type integration
 
-or all tests with
+or all tests with:
 
  $ eldev[.bat] test --test-type all
 
diff --git a/test/integration/integration-tests.el 
b/test/integration/integration-tests.el
index 00989f2936..854cb9a2e0 100644
--- a/test/integration/integration-tests.el
+++ b/test/integration/integration-tests.el
@@ -50,7 +50,7 @@ Remove the temp directory at the end of evaluation."
   ;; very long time to bring up/respond/shutdown, and thus sleep duration 
values
   ;; are set rather high.
 
-  (it "to bb"
+  (it "to babashka"
       (with-temp-dir temp-dir
         ;; set up a project directory in temp
         (let* ((project-dir temp-dir)
@@ -221,9 +221,9 @@ Remove the temp directory at the end of evaluation."
                       (nrepl-tests-sleep-until 15 (not (eq (process-status 
nrepl-proc) 'run)))
                       (expect (member (process-status nrepl-proc) '(exit 
signal)))))
                 (when-let ((nrepl-error-buffer (get-buffer "*nrepl-error*")))
-                (with-current-buffer nrepl-error-buffer
-                  (message ":*nrepl-error* %S"
-                           (substring-no-properties (buffer-string))))))))))))
+                  (with-current-buffer nrepl-error-buffer
+                    (message ":*nrepl-error* %S"
+                             (substring-no-properties 
(buffer-string))))))))))))
 
 (provide 'integration-tests)
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]