Skip to content

Instantly share code, notes, and snippets.

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