Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save justinobney/75c44a8538ae6c8f50142bc7d440d98c to your computer and use it in GitHub Desktop.
Save justinobney/75c44a8538ae6c8f50142bc7d440d98c to your computer and use it in GitHub Desktop.
expect.extend({
toHaveBeenCalledWithSnapshot: received => {
expect(received).toHaveBeenCalled();
expect(received.mock.calls).toMatchSnapshot();
return {
message: () => '',
pass: true,
};
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment