We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A new feature of CLJS (unreleased at time of writing) lets you write clojure.test and have the CLJS compiler fall back to cljs.test if it can't find a ClojureScript/CLJC file called clojure.test: http://blog.fikesfarm.com/posts/2016-07-03-clojurescript-clojure-namespace-aliasing.html
clojure.test
cljs.test
This means that a CLJC namespace requiring [clojure.test :as t] should resolve valid in CLJS mode and CLJ mode.
[clojure.test :as t]
The text was updated successfully, but these errors were encountered:
This is now official in Clojurescript 1.9.198: https://groups.google.com/forum/#!topic/clojure/-uG5kDcSEIs
Sorry, something went wrong.
Yes, I'm going to get this into a 1.4.0 EAP release soon.
Sadly, I've had to bump this to the next EAP build due to the subtleties involved.
No branches or pull requests
A new feature of CLJS (unreleased at time of writing) lets you write
clojure.test
and have the CLJS compiler fall back tocljs.test
if it can't find a ClojureScript/CLJC file calledclojure.test
: http://blog.fikesfarm.com/posts/2016-07-03-clojurescript-clojure-namespace-aliasing.htmlThis means that a CLJC namespace requiring
[clojure.test :as t]
should resolve valid in CLJS mode and CLJ mode.The text was updated successfully, but these errors were encountered: