generated from nhcarrigan/template
18 lines
415 B
TypeScript
18 lines
415 B
TypeScript
|
/**
|
||
|
* @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);
|
||
|
});
|
||
|
});
|