Skip to content

Instantly share code, notes, and snippets.

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