Re: ANN: ClojureScript 0.0-2496, cljs.test - a clojure.test port

2015-05-08 Thread Matthew Boston
Here's the commit I used when swapping cljs.test from clojurescript.test: https://github.com/testdouble/clojurescript.csv/commit/ad68052e311df423e245ec4d2a7ee5572b2a3a35 Note the runner.js file line 26 is calling the exported function to run all the tests. On Friday, May 8, 2015 at 12:49:07 AM

Re: ANN: ClojureScript 0.0-2496, cljs.test - a clojure.test port

2015-05-07 Thread puzzler
I can't find any documentation or examples for using the new cljs.test namespace. Can someone point me in the right direction? Thanks. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Not

Re: [ClojureScript] Re: ANN: ClojureScript 0.0-2496, cljs.test - a clojure.test port

2014-12-24 Thread Russell Mull
Yes, it's there. The things I listed are the only differences I could find. The separation of macros makes it a little confusing, but it's pretty easy to find in the source: - https://github.com/clojure/clojurescript/blob/master/src/cljs/cljs/test.cljs - https://github.com/clojure/clojurescript/

Re: [ClojureScript] Re: ANN: ClojureScript 0.0-2496, cljs.test - a clojure.test port

2014-12-24 Thread Yehonathan Sharvit
What about the 'are' macro? On Wed, Dec 24, 2014 at 7:38 PM, Russell Mull wrote: > Things that aren't in cljs.test: >- with-test >- run-tests can take a custom environment parameter. Things that >required rebinding a var in clj.test are configured with an entry in the >environm

Re: ANN: ClojureScript 0.0-2496, cljs.test - a clojure.test port

2014-12-24 Thread Russell Mull
Things that aren't in cljs.test: - with-test - run-tests can take a custom environment parameter. Things that required rebinding a var in clj.test are configured with an entry in the environment. - :reporter, instead of rebinding the report function - :testing-contexts i

Re: ANN: ClojureScript 0.0-2496, cljs.test - a clojure.test port

2014-12-23 Thread Yehonathan Sharvit
What is the gap between clojure.test and cljs.test? For exmaple: is the `are` macro implemented in cljs.test? On Wednesday, 17 December 2014 23:54:09 UTC+2, David Nolen wrote: > ClojureScript, the Clojure compiler that emits JavaScript source code. > > README and source code: https://github.com

Re: ANN: ClojureScript 0.0-2496, cljs.test - a clojure.test port

2014-12-21 Thread Yehonathan Sharvit
Now that var is implemented. Could we expect the support of private functions in cljs? On Wednesday, 17 December 2014 23:54:09 UTC+2, David Nolen wrote: > ClojureScript, the Clojure compiler that emits JavaScript source code. > > README and source code: https://github.com/clojure/clojurescript

Re: ANN: ClojureScript 0.0-2496, cljs.test - a clojure.test port

2014-12-19 Thread David Nolen
I just cut 0.0-2498, the only change is support for `cljs.test/use-fixtures` analogous to `clojure.test/use-fixtures`. David On Wed, Dec 17, 2014 at 4:54 PM, David Nolen wrote: > ClojureScript, the Clojure compiler that emits JavaScript source code. > > README and source code: https://github.com

ANN: ClojureScript 0.0-2496, cljs.test - a clojure.test port

2014-12-17 Thread Glen Mailer
> Also there's a doc macro now in the cljs.repl namespace that works as > expected. This is great to hear! Excited to see test.check being on the horizon as well. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to

Re: ANN: ClojureScript 0.0-2496, cljs.test - a clojure.test port

2014-12-17 Thread James MacAulay
Looks great, thanks so much! I was happy to see the "TODO: support async" comment in test.clj, as I am currently using Chas Emerick's clojurescript.test for very async-heavy stuff. I ended up writing a macro which I think improves the ergonomics of portable async testing quite a bit: https://g

Re: ANN: ClojureScript 0.0-2496, cljs.test - a clojure.test port

2014-12-17 Thread Nikita Beloglazov
Does cljs.test support asynchronous tests? What are benefits of cljs.test over clojurescript.test (https://github.com/cemerick/clojurescript.test)? Clojurescript.test also a port of clojure.test but has additional API for writing asynchronous tests. On Wednesday, December 17, 2014 2:39:22 PM

Re: ANN: ClojureScript 0.0-2496, cljs.test - a clojure.test port

2014-12-17 Thread Shaun LeBron
really exciting stuff, thanks a lot On Wednesday, December 17, 2014 3:54:09 PM UTC-6, David Nolen wrote: > ClojureScript, the Clojure compiler that emits JavaScript source code. > > README and source code: https://github.com/clojure/clojurescript > > New release version: 0.0-2496 > > Leiningen

Re: [ClojureScript] ANN: ClojureScript 0.0-2496, cljs.test - a clojure.test port

2014-12-17 Thread Dom Kiva-Meyer
Thank you! This is awesome news. On Wed, Dec 17, 2014 at 1:54 PM, David Nolen wrote: > > ClojureScript, the Clojure compiler that emits JavaScript source code. > > README and source code: https://github.com/clojure/clojurescript > > New release version: 0.0-2496 > > Leiningen dependency informati

Re: [ClojureScript] ANN: ClojureScript 0.0-2496, cljs.test - a clojure.test port

2014-12-17 Thread Mimmo Cosenza
thanks so much David! mimmo > On 17 Dec 2014, at 22:54, David Nolen wrote: > > ClojureScript, the Clojure compiler that emits JavaScript source code. > > README and source code: https://github.com/clojure/clojurescript > > New release version: 0.0-2496 > > Leiningen dependency information: >

ANN: ClojureScript 0.0-2496, cljs.test - a clojure.test port

2014-12-17 Thread David Nolen
ClojureScript, the Clojure compiler that emits JavaScript source code. README and source code: https://github.com/clojure/clojurescript New release version: 0.0-2496 Leiningen dependency information: [org.clojure/clojurescript "0.0-2496"] The big change in this release is a port of the clo