We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d280df1 commit 4b3ead5Copy full SHA for 4b3ead5
test/refactor_nrepl/integration_tests.clj
@@ -4,6 +4,7 @@
4
[nrepl.server :as nrepl]
5
[refactor-nrepl.analyzer :as analyzer]
6
[refactor-nrepl.client :refer [connect find-unbound find-usages resolve-missing version]]
7
+ [refactor-nrepl.config :as config]
8
[refactor-nrepl.core :as core]
9
[refactor-nrepl.middleware]))
10
@@ -21,8 +22,8 @@
21
22
23
(defn wrap-setup-once [f]
24
(let [server (start-up-repl-server)]
-
25
- (f)
+ (binding [config/*config* (assoc config/*config* :debug true)]
26
+ (f))
27
28
(stop-repl-server server)))
29
0 commit comments