(options = {})
| 263 | calls.branchDelete.push(options); |
| 264 | }, |
| 265 | async branchList(options = {}) { |
| 266 | calls.branchList.push(options); |
| 267 | return fakes.branchList?.() ?? []; |
| 268 | }, |
| 269 | async tag(options) { |
| 270 | calls.tag.push(options); |
| 271 | }, |
nothing calls this directly
no test coverage detected