import { describe, it, expect } from "vitest"; describe("Sample test", () => { it("should sum to 2", () => { const expected = 2; const result = 1 + 1; expect(result).equals(expected); }); })