(
overrides: Partial<MemoryFileInfo> = {},
)
| 8 | } from '../claudemd' |
| 9 | |
| 10 | function mockMemoryFile( |
| 11 | overrides: Partial<MemoryFileInfo> = {}, |
| 12 | ): MemoryFileInfo { |
| 13 | return { |
| 14 | path: '/project/CLAUDE.md', |
| 15 | type: 'Project', |
| 16 | content: 'test content', |
| 17 | ...overrides, |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | describe('stripHtmlComments', () => { |
| 22 | test('strips block-level HTML comments (own line)', () => { |