Function
makeSummary
(id: string, overrides: Partial<SessionSummary> = {})
Source from the content-addressed store, hash-verified
| 112 | }); |
| 113 | |
| 114 | function makeSummary(id: string, overrides: Partial<SessionSummary> = {}): SessionSummary { |
| 115 | return { |
| 116 | id, |
| 117 | workDir: tmp, |
| 118 | sessionDir: join(tmp, 'sessions', id), |
| 119 | createdAt: 1, |
| 120 | updatedAt: 2, |
| 121 | ...overrides, |
| 122 | }; |
| 123 | } |
| 124 | |
| 125 | function makeResult(id: string, zipPath: string): ExportSessionResult { |
| 126 | const manifest: ExportSessionManifest = { |
Tested by
no test coverage detected