feat(library): local canonical conversion for id-less notes

This commit is contained in:
afiqzudinhadi 2026-08-05 20:55:42 +08:00
parent 75db364a1d
commit 8fb16b3220
13 changed files with 630 additions and 7 deletions

View file

@ -449,6 +449,7 @@ describe('sync summary transparency', () => {
isActive: () => true,
resolve: async () => null,
sync: async () => null,
convertLocal: () => '',
};
const report = await c.syncType(noDataSpec, false);
@ -478,6 +479,7 @@ describe('resolveType: interactive candidate picker (needsChoice)', () => {
isActive: () => true,
resolve: async () => ({ candidates: CANDIDATES }),
sync: async () => null,
convertLocal: () => '',
};
function makeCandidateDeps(writes: { path: string; content: string }[]): LibraryEngineDeps {