(path: string, content: Uint8Array)
| 844 | } |
| 845 | |
| 846 | async writeFileBytes(path: string, content: Uint8Array) { |
| 847 | if (path === this.failPath) { |
| 848 | throw new Error(`simulated write failure: ${path}`); |
| 849 | } |
| 850 | return this.inner.writeFileBytes(path, content); |
| 851 | } |
| 852 | |
| 853 | async appendFile(path: string, content: string | Uint8Array) { |
| 854 | return this.inner.appendFile(path, content); |
nothing calls this directly
no test coverage detected