import { test, expect } from "vitest"; import sum from "./sum"; test("1 + 1 = 2", () => { expect(sum(1, 1)).toBe(2); });