about summary refs log tree commit diff
path: root/+bindings.el
diff options
context:
space:
mode:
authorGriffin Smith <root@gws.fyi>2020-05-26T14·28-0400
committerGriffin Smith <root@gws.fyi>2020-05-26T14·28-0400
commit77f6ed22065e026be826f978905097742dbb3fc4 (patch)
tree52fdb6d7ed8dd4686c598560a6ba30e811c310fd /+bindings.el
parent723ff591ee952fb94fd50997160b90b5219e4b74 (diff)
Fix run-tests snippet
cider-test-run-ns-tests needs to be called interactively
Diffstat (limited to '+bindings.el')
-rw-r--r--+bindings.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/+bindings.el b/+bindings.el
index db1c5e6c7a..9596d485f2 100644
--- a/+bindings.el
+++ b/+bindings.el
@@ -1228,7 +1228,10 @@ If invoked with a prefix ARG eval the expression after inserting it"
                  (s-replace "\"" "")
                  (s-replace "\\n" "\n")))))
        nil nil nil)))
-    ('clj  (cider-test-run-ns-tests))))
+    ('clj
+     (funcall-interactively
+      #'cider-test-run-ns-tests
+      nil))))
 
 (defun cider-copy-last-result ()
   (interactive)