Skip to content

Instantly share code, notes, and snippets.

@jtenner
Created May 22, 2019 18:22
Show Gist options
  • Save jtenner/d2e2647a29846efd18017118c50fe5e2 to your computer and use it in GitHub Desktop.
Save jtenner/d2e2647a29846efd18017118c50fe5e2 to your computer and use it in GitHub Desktop.
describe("not", (): void => {
it("should not be -1", (): void => {
expect<i32>(42).not.toBe(-1, "42 is not -1");
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment