(path: string, encoding: BufferEncoding)
| 345 | return baseHost.existsSync(path); |
| 346 | }, |
| 347 | readFile(path: string, encoding: BufferEncoding) { |
| 348 | checkPath(path); |
| 349 | |
| 350 | return baseHost.readFile(path, encoding); |
| 351 | }, |
| 352 | glob(pattern: string, options: { cwd: string }) { |
| 353 | if (pattern.includes('..')) { |
| 354 | throw new Error( |
no test coverage detected