Skip to content

Instantly share code, notes, and snippets.

@moonformeli
Created October 14, 2019 02:43
describe("Math", () => {
describe("Basic function test", () => {
it("add is called", () => {
// ...
// Assertion
expect(2).not.toBeOdd();
expect(3).toBeOdd();
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment