clojurescript

ClojureScript, a dialect of Clojure that compiles to JavaScript http://clojurescript.org | Currently at 1.10.879
Clément Ronzon 2021-04-05T15:34:10.479500Z

Hey gals and guys, Is there a way to obtain the context of a test from within the :before function registered via cljs.test/use-fixtures? I am using re-frame and I'd like to mock all the event handlers except the one being tested.

2021-04-05T22:23:56.480600Z

@clement.ronzon I'm not answering your question directly, but perhaps have a look at what re-frame-test supplies.

Clément Ronzon 2021-04-05T23:21:53.480800Z

Thanks Mike, I did look at it but wasn't able to find anything like so. I ll change the approach.