(path: string)
| 35 | written.set(toUnixPath(path), content); |
| 36 | }, |
| 37 | async exists(path: string) { |
| 38 | return store.has(toUnixPath(path)); |
| 39 | }, |
| 40 | async mkdir(path: string): Promise<undefined> { |
| 41 | dirs.add(toUnixPath(path)); |
| 42 | }, |
nothing calls this directly
no test coverage detected