feat(FN-2087): finalize canonical memory path migration
- Remove legacy .fusion/memory.md fallback references and normalize prompts/docs to .fusion/memory/MEMORY.md - Stop legacy mirror writes and fallback reads in core memory backend and project memory flows - Update engine worktree boundary checks and tests for canonical memory file handling - Align dashboard memory/settings surfaces and route tests with canonical memory behavior - Add model-favorites persistence test coverage for mission interview and new agent dialogs
This commit is contained in:
@@ -38,7 +38,7 @@ describe("test-project fixture", () => {
|
||||
expect(existsSync(join(fixture.rootDir, ".fusion", "fusion.db"))).toBe(true);
|
||||
expect(existsSync(join(fixture.rootDir, ".fusion", "config.json"))).toBe(true);
|
||||
expect(existsSync(join(fixture.rootDir, ".fusion", "tasks"))).toBe(true);
|
||||
expect(existsSync(join(fixture.rootDir, ".fusion", "memory.md"))).toBe(true);
|
||||
expect(existsSync(join(fixture.rootDir, ".fusion", "memory", "MEMORY.md"))).toBe(true);
|
||||
|
||||
const configRaw = await readFile(join(fixture.rootDir, ".fusion", "config.json"), "utf-8");
|
||||
const config = JSON.parse(configRaw);
|
||||
|
||||
Reference in New Issue
Block a user