(path: string)
| 232 | const provider = new MemoryProvider(); |
| 233 | const userProvider: SessionFsProvider = { |
| 234 | async readFile(path: string): Promise<string> { |
| 235 | return (await provider.readFile(path, "utf8")) as string; |
| 236 | }, |
| 237 | async writeFile(path: string, content: string): Promise<void> { |
| 238 | await provider.writeFile(path, content); |
| 239 | }, |
no test coverage detected
searching dependent graphs…