Hi, I'm no longer able to start a REPL for a project on a WSL2 filesystem. All instances of Intellij hang completely! I've tried using several JDKs defined in both Ubuntu and in Windows. What do I need to do to start a REPL? I'm using leiningen and all the latest everything.
I've tried closing the project, deleting the .idea
directory and all .iml
files, removing all JDKs and starting again. I've tried this on both my home and work laptops.
This is the log from when I started the IDE to after I clicked start on the REPL run configuration, nothing else
I'll drop a line here before going into Kaocha channel, which looks to be pretty sparse/just watched by the maintainer (in case it's a "no duh" thing). Is there way to get Kaocha testing/results integrated in IDE, or is Kaocha something people strictly run on the command line?
No full integration afaik, but you can set up repl commands and run it in the repl:
(do
(require 'clojure.spec.alpha 'expound.alpha 'kaocha.repl)
(binding [clojure.spec.alpha/*explain-out* expound.alpha/printer]
(kaocha.repl/run-all)))
and for the current repl ns
(do
(require 'clojure.spec.alpha 'expound.alpha 'kaocha.repl)
(binding [clojure.spec.alpha/*explain-out* expound.alpha/printer]
(kaocha.repl/run)))
at least these are what I use
Ah, I see. Thanks!
It would be extremely awesome to have full integration though