Skip to content

Instantly share code, notes, and snippets.

@jkimbo
Created October 25, 2015 22:31
Show Gist options
  • Save jkimbo/aca4135bf4429f2fd837 to your computer and use it in GitHub Desktop.
Save jkimbo/aca4135bf4429f2fd837 to your computer and use it in GitHub Desktop.
JS testing tips

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',
  }
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment