/** * @copyright nhcarrigan * @license Naomi's Public License * @author Naomi Carrigan */ import { describe, it, expect } from "vitest"; import { Koikatsu } from "../../src/config/Koikatsu"; describe("koikatsu strings", () => { it("should be unique", () => { expect.assertions(1); const set = new Set( Koikatsu, ); expect(set, "are not unique").toHaveLength(Koikatsu.length); }); });