import { describe, it, expect } from "vitest"; import { tiShortChoser } from "./tiShortChoser.ts"; describe("tiShortChoser", () => { it("tiShortChoser 6, 2, 7, 3", () => { expect(tiShortChoser(6, 2, 7, 3)).toEqual([3, 4]); }); });