(overrides?: Partial<SessionMeta>)
| 22 | // ==================== Mock helpers ==================== |
| 23 | |
| 24 | function makeMeta(overrides?: Partial<SessionMeta>): SessionMeta { |
| 25 | return { |
| 26 | name: 'Test Group', |
| 27 | platform: 'wechat', |
| 28 | type: 'group', |
| 29 | importedAt: 1700000000, |
| 30 | groupId: 'g001', |
| 31 | groupAvatar: null, |
| 32 | ownerId: 'u001', |
| 33 | ...overrides, |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | function makeOverview(overrides?: Partial<SessionOverview>): SessionOverview { |
| 38 | return { |
no outgoing calls
no test coverage detected