Skip to content

Instantly share code, notes, and snippets.

@jtenner
Created May 22, 2019 14:54
Show Gist options
  • Save jtenner/4f30006363862f18a81d87d275e618cd to your computer and use it in GitHub Desktop.
Save jtenner/4f30006363862f18a81d87d275e618cd to your computer and use it in GitHub Desktop.
let myFoo = new Foo();
describe("Foo.divide()", (): void => {
throws("when dividing by zero", (): void => {
myFoo.divide(42, 0);
}, "Dividing by zero should throw an error.");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment