(files: Record<string, string>)
| 66 | ) |
| 67 | |
| 68 | const tmpWithFiles = (files: Record<string, string>) => |
| 69 | Effect.gen(function* () { |
| 70 | const dir = yield* tmpdirScoped() |
| 71 | yield* writeFiles(dir, files) |
| 72 | return dir |
| 73 | }) |
| 74 | |
| 75 | function loaded(filepath: string): SessionV1.WithParts[] { |
| 76 | const sessionID = SessionID.make("session-loaded-1") |
no test coverage detected