()
| 50 | } |
| 51 | |
| 52 | export async function createFileAdapter(): Promise<{ |
| 53 | adapter: PersistAdapter; |
| 54 | initialHtml: string | undefined; |
| 55 | }> { |
| 56 | const adapter = new FileAdapter(); |
| 57 | const initialHtml = await adapter.read("composition.html"); |
| 58 | return { adapter, initialHtml }; |
| 59 | } |
no test coverage detected