Fork me on GitHub
#expound
<
2020-11-20
>
neilyio19:11:49

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.

neilyio19:11:41

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.

bbrinck19:11:36

You’re correct, it’s a spec issue: you should see the same thing if you called (s/explain ::my-spec my-val)

neilyio19:11:32

Indeed I do... Have you heard of a workaround? I can ask on the spec channel.

bbrinck19:11:44

Did adding the dependency to deps.edn not fix it? I would have expected that to work.

neilyio19:11:44

No it didn't work, I'm not sure why. I asked in clojure-spec, I'll let you know what they say.

👍 3