Skip to content

Instantly share code, notes, and snippets.

@matheusml
Created May 6, 2020 13:38
Show Gist options
  • Save matheusml/60b09edc63da07d89a441ea4cee8c8dc to your computer and use it in GitHub Desktop.
Save matheusml/60b09edc63da07d89a441ea4cee8c8dc to your computer and use it in GitHub Desktop.
describe("booleans", () => {
it("false === false", () => {
expect(false).toBe(false);
});
it("true === true", () => {
expect(true).toBe(true);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment