generated from nhcarrigan/template
24 lines
610 B
TypeScript
24 lines
610 B
TypeScript
|
/**
|
||
|
* @copyright nhcarrigan
|
||
|
* @license Naomi's Public License
|
||
|
* @author Naomi Carrigan
|
||
|
*/
|
||
|
import { describe, it, expect } from "vitest";
|
||
|
import { NavItems } from "../../src/config/NavItems";
|
||
|
|
||
|
describe("nav items", () => {
|
||
|
it("should be unique", () => {
|
||
|
expect.assertions(2);
|
||
|
const href = new Set(
|
||
|
NavItems.map((n) => {
|
||
|
return n.href;
|
||
|
}),
|
||
|
);
|
||
|
const text = new Set(NavItems.map((n) => {
|
||
|
return n.text;
|
||
|
}));
|
||
|
expect(href, "links are not unique").toHaveLength(NavItems.length);
|
||
|
expect(text, "names are not unique").toHaveLength(NavItems.length);
|
||
|
});
|
||
|
});
|