Fork me on GitHub
#re-frame
<
2019-03-02
>
ag00:03:40

hmm it seems it’s not just orchestra it doesn’t seem to be working with clojure.spec.test.apha/instrument either

ag00:03:12

It works when I call functions manually, but it doesn’t work when a function is used in a subscription

ag00:03:47

can I somehow “force” re-frame to work with instrument?

mikethompson03:03:29

@ag I'd guess you can just define the "handlers" separately and instrument them independently of registration?

mikethompson03:03:19

Ie. don't register an fn handler using reg-sub, instead use reg-sub to register a handler function you previously defned and fdefed

ag03:03:58

That's what I'm doing