(collection: string, key: string)
| 18 | const makeFakeStorage = () => { |
| 19 | const rows = new Map<string, { owner: Owner; key: string; collection: string; data: unknown }>(); |
| 20 | const composite = (collection: string, key: string) => `${collection} ${key}`; |
| 21 | const toEntry = (row: { owner: Owner; key: string; collection: string; data: unknown }) => ({ |
| 22 | id: composite(row.collection, row.key), |
| 23 | owner: row.owner, |
no outgoing calls
no test coverage detected