Skip to content

Instantly share code, notes, and snippets.

@FagnerMartinsBrack
Last active July 24, 2016 09:49
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/ae7af0553c9e90153cca464546f1464f to your computer and use it in GitHub Desktop.
Save FagnerMartinsBrack/ae7af0553c9e90153cca464546f1464f to your computer and use it in GitHub Desktop.
(Medium) Mocking Can Lead To False Positives - Proper Test With A Number Instance
test("Add to index should be called with the input", function() {
const mockedDatabasePersist = mockDatabasePersist();
const fakeIndex = new Number(5);
addIndexToDatabase(fakeIndex);
expect(mockedDatabasePersist).toHaveBeenCalledWith(fakeIndex);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment