Unify namespace for interacting with clojure.test.check
Description
Clojure uses the namespace clojure.spec.test.check to pass options to clojure.test.check. ClojureScript's version of spec could to the same. Also this namespace occurs in the return value of clojure.spec.test.alpha/check and it would have to be unified there.
CLJS-2964 provides a patch that already does this.
You can see that stc was really meant to be a shorthand for spectestcheck. You could probably also argue that it should have really aliased cljs.spec.test.check in ClojureScript.
Clojure uses the namespace
clojure.spec.test.check
to pass options toclojure.test.check
. ClojureScript's version of spec could to the same. Also this namespace occurs in the return value ofclojure.spec.test.alpha/check
and it would have to be unified there.CLJS-2964 provides a patch that already does this.