1 2 3 4 5 6 7
import { sum } from "../."; describe("Hello", () => { it("renders without crashing", () => { expect(sum(1, 2)).toEqual(3); }); });