Files
jobtrackingapp/job-tracker-ui/src/applicationWorkspace.test.ts
T
cesnimda ce76046a29 feat: complete release readiness work
- consolidate API ownership and remove dead vendor code

- add Stripe billing, learning paths, and public CV hardening

- add migration, recovery, security, audit, and browser gates
2026-07-31 16:54:16 +02:00

9 lines
437 B
TypeScript

import { WORKSPACE_SECTIONS, workspaceSection } from "./applicationWorkspace";
test("workspace navigation rejects removed and unknown sections", () => {
expect(WORKSPACE_SECTIONS.map((section) => section.key)).not.toContain("portfolio");
expect(WORKSPACE_SECTIONS.map((section) => section.key)).not.toContain("notes");
expect(workspaceSection("match")).toBe("match");
expect(workspaceSection("portfolio")).toBe("overview");
});