(path: string)
| 815 | // =========================================================================== |
| 816 | |
| 817 | async readFile(path: string): Promise<string> { |
| 818 | return this.fs.readFile(this.fs.resolvePath(this.state.cwd, path)); |
| 819 | } |
| 820 | |
| 821 | async writeFile(path: string, content: string): Promise<void> { |
| 822 | return this.fs.writeFile( |
no test coverage detected