1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-06-17 00:18:05 +02:00

Increase test coverage

This commit is contained in:
Jesse Duffield
2023-05-20 16:55:07 +10:00
parent b07c4fc001
commit 63ddc52a6b
3 changed files with 145 additions and 5 deletions

View File

@ -150,3 +150,9 @@ func buildBranchCommands(deps commonDeps) *BranchCommands {
return NewBranchCommands(gitCommon)
}
func buildFlowCommands(deps commonDeps) *FlowCommands {
gitCommon := buildGitCommon(deps)
return NewFlowCommands(gitCommon)
}