| 1 | import { describe, it, expect } from 'vitest'; |
| 2 | import { rankEpisodes, buildEpisodeBlock, fileFreshness, type Episode } from '../src/context/episodic-memory.js'; |
| 3 | |
| 4 | const ep = (prompt: string, summary: string, files: string[] = []): Episode => |
nothing calls this directly
no test coverage detected