(options = {})
| 280 | calls.checkout.push(options); |
| 281 | }, |
| 282 | async fetch(options = {}) { |
| 283 | calls.fetch.push(options); |
| 284 | return fakes.fetch?.() ?? { defaultBranch: "main", fetchHead: null }; |
| 285 | }, |
| 286 | async push(options = {}) { |
| 287 | calls.push.push(options); |
| 288 | return fakes.push?.() ?? { ok: true, error: null, refs: {} }; |