Skip to content

Instantly share code, notes, and snippets.

@ffMathy
Created August 22, 2018 20:34
Show Gist options
  • Save ffMathy/4ea3c36d9ff379cebc0f0e529e667586 to your computer and use it in GitHub Desktop.
Save ffMathy/4ea3c36d9ff379cebc0f0e529e667586 to your computer and use it in GitHub Desktop.
const mockedCalculator = TypeMoq.Mock.ofType(RealCalculator);
const calculator = mockedCalculator.object;
mockedCalculator.setup(x => x.isEnabled).returns(() => false);
console.log(calculator.isEnabled); //false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment