(id: string, sessionID: string, messageID: string)
| 21 | }) as Message |
| 22 | |
| 23 | const part = (id: string, sessionID: string, messageID: string) => |
| 24 | ({ |
| 25 | id, |
| 26 | sessionID, |
| 27 | messageID, |
| 28 | type: "text", |
| 29 | text: id, |
| 30 | }) as Part |
| 31 | |
| 32 | describe("app session cache", () => { |
| 33 | test("dropSessionCaches clears orphaned parts without message rows", () => { |
no outgoing calls
no test coverage detected