diff --git a/client/src/api/adapters/tauri/__tests__/core-mapping.test.ts b/client/src/api/adapters/tauri/__tests__/core-mapping.test.ts index 8bb467f..4061e6f 100644 --- a/client/src/api/adapters/tauri/__tests__/core-mapping.test.ts +++ b/client/src/api/adapters/tauri/__tests__/core-mapping.test.ts @@ -27,6 +27,7 @@ describe('tauri-adapter mapping (core)', () => { project_id: undefined, project_ids: [], include_segments: false, + include_summary: false, }); }); diff --git a/client/src/api/adapters/tauri/sections/meetings.test.ts b/client/src/api/adapters/tauri/sections/meetings.test.ts index a94afa5..285e0d5 100644 --- a/client/src/api/adapters/tauri/sections/meetings.test.ts +++ b/client/src/api/adapters/tauri/sections/meetings.test.ts @@ -149,6 +149,7 @@ describe('createMeetingApi', () => { project_id: null, project_ids: ['p1'], include_segments: true, + include_summary: false, }); expect(meetingCacheState.cacheMeetings).toHaveBeenCalled(); });