Skip to content

Instantly share code, notes, and snippets.

@ffMathy
Created August 22, 2018 20:33
Show Gist options
  • Save ffMathy/1550f8beca07ffe1b1c5a2e13f522ad9 to your computer and use it in GitHub Desktop.
Save ffMathy/1550f8beca07ffe1b1c5a2e13f522ad9 to your computer and use it in GitHub Desktop.
const mockedCalculator = mock(RealCalculator);
const calculator = instance(mockedCalculator);
when(mockedCalculator.add(1, 2)).thenCall(console.log);
calculator.add(1, 2); //will call console.log(1, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment