-
-
Notifications
You must be signed in to change notification settings - Fork 772
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
calledWith
reporting a match with completely different arguments (promises)
#2345
Comments
I agree that your example should return However, I think we can only do a strict equality check on promises since it's impossible to inspect the state and value of a promise synchronously. To write an assertion on the resolved promise value, you'd depend on your assertion library to support that, e.g. with referee I would write it like this: await assert.resolves(mySpy.lastCall.args[0], 'b'); |
I am personally using chai so what I am currently doing right now is pretty much the same: expect(await mySpy.getCall(0).args[0]).to.deel.equal('a'); It looks really ugly though :( But sometimes I have the specific Promise instance right on the test so that would look like expect(mySpy.calledWith(myPromise)).to.equal(true) or even prettier with sinonChai expect(mySpy).to.have.been.calledWith(myPromise); |
This will need to be fixed in |
I've uploaded a PR. Just let me know if you need anything else there. |
I wonder why const mySpy = sinon.spy();
const anObject = {};
const anotherObject = {};
mySpy(anObject);
const output = mySpy.calledWith(anotherObject);
console.log(output); // true, I expect it to be false
// My workaround with chai
expect(mySpy.calledOnce).to.be.true;
expect(mySpy.firstCall.args[0]).to.be.eq(anObject); if expect(mySpy.calledWith(anObject)).to.be.true; This becomes even harder when there are multiple object arguments. |
@srknzl You can solve that with |
Thanks a lot, I checked matchers but looks like I missed that one |
PR is pending a small update. |
Describe the bug
Sinon spy
calledWith
doesn't work with promisesTo Reproduce
Steps to reproduce the behavior:
Expected behavior
calledWith
should fail when comparing obviously different arguments than the one it was previously called with.I guess the
deepEqual
function used inside this method is not correctly comparing promises.The example above should be able to fail for either of these 2 options:
calledWith
expectation are differentI guess option 1 would be the expected behaviour by most users and it would probably be the easiest to implement.
Context (please complete the following information):
The text was updated successfully, but these errors were encountered: