I couldn't find a similar issue with a search, sorry if this is a duplicate post.
In some mock frameworks, you can validate that all of the setups have been called. Is there a way to do that with Sinon? Or any plans to support that?
something like:
thing.myApi = stub();
Sinon.verifyAll(); // throws because myApi() was not called.
Thanks