Sinon Matching against an object If you need to assert calledWith an object you can use sinon.match. This roughly matches against the object so you don't have to pass the full object. assert(dispatchSpy.calledWith(sinon.match({ payload: { 'foo': 'bar', } }));