You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would you be open for PR to document the callIds property?
The reason it's needed is because let's say I have 2 function fn1 and fn2
And want to test assert the following
fn1();
fn2();
fn1();
fn2();
Currently I can't do that with the current assertions but I want to open it so I can add support for other assertions library to use (my sinon-jest-marchers specifically)
The text was updated successfully, but these errors were encountered:
Sorry this was just lying here for forever, but I just never noticed it. You have been able to check exactly this since Sinon 1. This works fine using the SpyCall API:
Would you be open for PR to document the
callIds
property?The reason it's needed is because let's say I have 2 function fn1 and fn2
And want to test assert the following
Currently I can't do that with the current assertions but I want to open it so I can add support for other assertions library to use (my sinon-jest-marchers specifically)
The text was updated successfully, but these errors were encountered: