Skip to content

Instantly share code, notes, and snippets.

@mbjelac
Last active April 26, 2022 20:51
Show Gist options
  • Save mbjelac/237ee2f375aefba0b056807c27c21c3b to your computer and use it in GitHub Desktop.
Save mbjelac/237ee2f375aefba0b056807c27c21c3b to your computer and use it in GitHub Desktop.
multiple-asserts-bad_4
test("turns on credit check", () => {
const result = initializeCreditThingy(42, "boo!!!");
expect(result.creditCheck).toBe(true);
});
test("does that other thing", () => {
const result = initializeCreditThingy(42, "boo!!!");
expect(result.spamCounter).toBe(0);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment