(path: string, content: string)
| 819 | } |
| 820 | |
| 821 | async writeFile(path: string, content: string): Promise<void> { |
| 822 | return this.fs.writeFile( |
| 823 | this.fs.resolvePath(this.state.cwd, path), |
| 824 | content, |
| 825 | ); |
| 826 | } |
| 827 | |
| 828 | getCwd(): string { |
| 829 | return this.state.cwd; |
nothing calls this directly
no test coverage detected