Skip to content

Commit adfe8d5

Browse files
committed
fix(test): update multi-project routing assertions for new map header
renderMapMarkdown now emits '# Codebase Map — <project>' instead of '# Codebase Intelligence'. Two stale assertions in tests/multi-project-routing.test.ts were not updated during execution. Full suite: 412/412 pass.
1 parent 328d03b commit adfe8d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/multi-project-routing.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ describe('multi-project routing', () => {
579579
})) as ResourceReadResponse;
580580

581581
expect(response.contents[0]?.uri).toBe(CONTEXT_RESOURCE_URI);
582-
expect(response.contents[0]?.text).toContain('# Codebase Intelligence');
582+
expect(response.contents[0]?.text).toContain('# Codebase Map');
583583
expect(response.contents[0]?.text).not.toContain('Project selection required');
584584
});
585585

@@ -660,7 +660,7 @@ describe('multi-project routing', () => {
660660
})) as ResourceReadResponse;
661661

662662
expect(response.contents[0]?.uri).toBe(buildProjectContextResourceUri(payload.project.project));
663-
expect(response.contents[0]?.text).toContain('# Codebase Intelligence');
663+
expect(response.contents[0]?.text).toContain('# Codebase Map');
664664
});
665665

666666
it('returns unknown_project error when project path does not exist', async () => {

0 commit comments

Comments
 (0)