(options)
| 305 | return fakes.remoteList?.() ?? []; |
| 306 | }, |
| 307 | async hashObject(options) { |
| 308 | calls.hashObject.push(options); |
| 309 | return fakes.hashObject?.() ?? "a".repeat(40); |
| 310 | }, |
| 311 | async catFile(options) { |
| 312 | calls.catFile.push(options); |
| 313 | return ( |
nothing calls this directly
no test coverage detected