Skip to content

Instantly share code, notes, and snippets.

@ffMathy
Created August 22, 2018 20:30
Show Gist options
  • Save ffMathy/429eb20423c9008b5932f5b431e1cab8 to your computer and use it in GitHub Desktop.
Save ffMathy/429eb20423c9008b5932f5b431e1cab8 to your computer and use it in GitHub Desktop.
const mockedCalculator = mock(RealCalculator);
const calculator = instance(mockedCalculator);
calculator.add(1, 2);
verify(mockedCalculator.add(1, 2)).once(); //called exactly once
verify(mockedCalculator.add(1, 2)).atLeast(0); //called at least once
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment