Clojure 1.9 introduced specs. Functions in the clojure.core library now have specs. How do I set up a clojurescript project to use specs and test the clojure.core functions at runtime?
I used the libraries [org.clojure/test.check "0.10.0-alpha2"] and [org.clojure/spec.alpha "0.1.123"] to install specs and the command instrument. It worked to detect problems in functions that I wrote specs. But it didn't detect problems with clojure.core (for instance, map).
Maybe specs do not work with clojurescript yet.
[org.clojure/test.check "0.10.0-alpha2"][org.clojure/spec.alpha "0.1.123"]and usedinstrument. It worked to detect problems in functions that I wrote specs. But it didn't detected problems with clojure.core (for instance, map). Maybe specs do not work with clojurescript yet (I'm using[org.clojure/clojure "1.9.0-beta1"] [org.clojure/clojurescript "1.9.946"])? - dilvan