Jest & Mobx: how to test execution of disposer? – Reactjs
Hope anyone already overcome this issue. codesandbox I want to check, that after changing appliedIds, loadCampaign will be executed. As we say in disposer: addDisposer( self, reaction(() => self.appliedIds, this.loadCampaign), ); So how can I do it? How to wait…