Another roadblock today...
Var clojure.test.check.generators/simple-type-printable does not exist, clojure.test.check.generators never required
happens every time I call (expound/expound ::my-spec my-val)
in ClojureScript. I don't have instrumentation turned on.
I've followed the advice at https://stackoverflow.com/questions/57877004/how-to-fix-clojure-test-check-generators-never-required-when-exercising-a-func and added org.clojure/test.check
to my deps.edn
dependencies, but it hasn't fixed the problem.
I realize this is a probably a spec issue, not an Expound one, but since it happens though an expound
call I thought I'd ask here.
You’re correct, it’s a spec issue: you should see the same thing if you called (s/explain ::my-spec my-val)
Indeed I do... Have you heard of a workaround? I can ask on the spec channel.
Did adding the dependency to deps.edn not fix it? I would have expected that to work.
No it didn't work, I'm not sure why. I asked in clojure-spec, I'll let you know what they say.