ce76046a29
- 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
9 lines
437 B
TypeScript
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");
|
|
});
|