import { describe, expect, it } from "vitest"; describe("add", () => { it("should sum of 2 and 3 equals to 5", () => { expect(5).toEqual(5); }); });