32d16089f1
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.
11 lines
422 B
TypeScript
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`");
|
|
});
|