(path, content)
| 20 | await memoryProvider.writeFile(sp(path), content); |
| 21 | }, |
| 22 | async appendFile(path, content) { |
| 23 | await memoryProvider.appendFile(sp(path), content); |
| 24 | }, |
| 25 | async exists(path) { |
| 26 | return memoryProvider.exists(sp(path)); |
| 27 | }, |
nothing calls this directly
no test coverage detected
searching dependent graphs…