Skip to content

Instantly share code, notes, and snippets.

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