import assert from "node:assert/strict" import { readFile } from "node:fs/promises" import test from "node:test" const source = await readFile(new URL("./nav-main.tsx", import.meta.url), "utf8") test("dashboard nav items expose full labels when visual text is truncated", () => { assert.match(source, /\{title\}<\/span>/) assert.match(source, /tooltip=\{item\.title\}/) assert.match(source, /\{item\.title\}<\/span>/) })