(path, content)
| 1144 | } |
| 1145 | }, |
| 1146 | async writeFile(path, content) { |
| 1147 | await fs.writeFile(path, content); |
| 1148 | }, |
| 1149 | async readDir(dir, opts) { |
| 1150 | const entries = await fs.readdir(dir); |
| 1151 | const offset = opts?.offset ?? 0; |
no test coverage detected