(input: {
readonly id: string;
readonly sessionDir: string;
readonly workDir: string;
readonly title?: string | undefined;
})
| 82 | } |
| 83 | |
| 84 | function makeSummary(input: { |
| 85 | readonly id: string; |
| 86 | readonly sessionDir: string; |
| 87 | readonly workDir: string; |
| 88 | readonly title?: string | undefined; |
| 89 | }): SessionSummary { |
| 90 | return { |
| 91 | id: input.id, |
| 92 | sessionDir: input.sessionDir, |
| 93 | workDir: input.workDir, |
| 94 | createdAt: 1, |
| 95 | updatedAt: 2, |
| 96 | title: input.title, |
| 97 | }; |
| 98 | } |
| 99 | |
| 100 | describe('exportSessionDirectory', () => { |
| 101 | it('writes a zip with manifest and every session file', async () => { |
no outgoing calls
no test coverage detected