aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/cli/scripts/templates/src/__tests__/index.test.ts
blob: 9a4831a645b0a5b752d74a17f1b62262e82b1e7c (plain) (blame)
1
2
3
4
5
6
7
import { sum } from "../.";

describe("Hello", () => {
  it("renders without crashing", () => {
    expect(sum(1, 2)).toEqual(3);
  });
});