(options = {})
| 414 | }); |
| 415 | }, |
| 416 | async diffSummary(options = {}) { |
| 417 | const f = await fs(); |
| 418 | return diffSummaryWith({ |
| 419 | ...options, |
| 420 | fs: f, |
| 421 | git: await loadGit<IsomorphicGitDiffClient>(), |
| 422 | createPatch: await loadDiffPatch(), |
| 423 | readFile: readFileFrom(f), |
| 424 | cache, |
| 425 | }); |
| 426 | }, |
| 427 | async init(options = {}) { |
| 428 | await initWith({ |
| 429 | ...options, |
nothing calls this directly
no test coverage detected