summaryrefslogtreecommitdiffstats
path: root/pkg/integration/tests/branch/open_with_cli_arg.go
blob: 8e08125fb7042786cb6766ebb4ca40ca61f1b486 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package branch

import (
	"github.com/jesseduffield/lazygit/pkg/config"
	. "github.com/jesseduffield/lazygit/pkg/integration/components"
)

var OpenWithCliArg = NewIntegrationTest(NewIntegrationTestArgs{
	Description:  "Open straight to branches panel using a CLI arg",
	ExtraCmdArgs: []string{"branch"},
	Skip:         false,
	SetupConfig:  func(config *config.AppConfig) {},
	SetupRepo: func(shell *Shell) {
	},
	Run: func(t *TestDriver, keys config.KeybindingConfig) {
		t.Views().Branches().IsFocused()
	},
})