This is a sandbox repo for playing around with Jest + Typescript + Node.
- gets called
- returns the expected results
- throws the expected errors
// describe noun
describe("The function", () => {
// describe behavior
describe("should throw an error", () => {
// test case
test("when dependency throws", () => {
//
});
// test case
test("when input is bad", () => {
//
});
});
});