Skip to content

Instantly share code, notes, and snippets.

@FagnerMartinsBrack
Last active July 24, 2016 09:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FagnerMartinsBrack/ea14862fd13c452e9167a90f341eda6e to your computer and use it in GitHub Desktop.
Save FagnerMartinsBrack/ea14862fd13c452e9167a90f341eda6e to your computer and use it in GitHub Desktop.
(Medium) Mocking Can Lead To False Positives - Fixed Test With Object Literal
test("Add to index should be called with the input", function() {
const mockedDatabasePersist = mockDatabasePersist();
const fakeInput = {};
addIndexToDatabase(fakeInput);
expect(mockedDatabasePersist).toHaveBeenCalledWith(fakeInput);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment