Files
jobtrackingapp/job-tracker-ui/src/application-route-contracts.test.ts
T
cesnimda 32d16089f1 refactor(jobs): remove legacy details dialog
The routed job workspace owns analysis, correspondence, timeline, and interview flows. Remove the unreachable duplicate dialog and keep coverage on the live components and route contracts.
2026-08-30 23:22:40 +02:00

11 lines
422 B
TypeScript

import fs from "node:fs";
import path from "node:path";
test("application panels use distinct timeline, interview board, and generated brief routes", () => {
const workspace = fs.readFileSync(path.join(process.cwd(), "src/applicationWorkspace.ts"), "utf8");
expect(workspace).toContain("/timeline");
expect(workspace).toContain("/interview-prep`");
expect(workspace).not.toContain("/interview-prep/brief`");
});