feat: add hide link underline option to resume settings, resolves #3134

This commit is contained in:
Amruth Pillai
2026-06-01 15:30:49 +02:00
parent d6a9bc6c4b
commit 5fb4976ec9
16 changed files with 2820 additions and 157 deletions
@@ -4,6 +4,13 @@ import { describe, expect, it } from "vitest";
const source = readFileSync(fileURLToPath(new URL("./primitives.tsx", import.meta.url)), "utf8");
describe("Link", () => {
it("passes the resume page underline preference to shared link styles", () => {
expect(source).toContain("metadata.page.hideLinkUnderline");
expect(source).toContain("hideUnderline: metadata.page.hideLinkUnderline");
});
});
describe("SectionHeadingIcon", () => {
it("passes the resolved heading icon size through the icon size prop", () => {
expect(source).toContain("size: sizeProp");