summaryrefslogtreecommitdiffstats
path: root/pkg/integration/tests/worktree/custom_command.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/integration/tests/worktree/custom_command.go')
-rw-r--r--pkg/integration/tests/worktree/custom_command.go40
1 files changed, 40 insertions, 0 deletions
diff --git a/pkg/integration/tests/worktree/custom_command.go b/pkg/integration/tests/worktree/custom_command.go
new file mode 100644
index 000000000..2276e59be
--- /dev/null
+++ b/pkg/integration/tests/worktree/custom_command.go
@@ -0,0 +1,40 @@
+package worktree
+
+import (
+ "github.com/jesseduffield/lazygit/pkg/config"
+ . "github.com/jesseduffield/lazygit/pkg/integration/components"
+)
+
+var CustomCommand = NewIntegrationTest(NewIntegrationTestArgs{
+ Description: "Verify that custom commands work with worktrees by deleting a worktree via a custom command",
+ ExtraCmdArgs: []string{},
+ Skip: false,
+ SetupConfig: func(cfg *config.AppConfig) {
+ cfg.UserConfig.CustomCommands = []config.CustomCommand{
+ {
+ Key: "d",
+ Context: "worktrees",
+ Command: "git worktree remove {{ .SelectedWorktree.Path | quote }}",
+ },
+ }
+ },
+ SetupRepo: func(shell *Shell) {
+ shell.NewBranch("mybranch")
+ shell.CreateFileAndAdd("README.md", "hello world")
+ shell.Commit("initial commit")
+ shell.AddWorktree("mybranch", "../linked-worktree", "newbranch")
+ },
+ Run: func(t *TestDriver, keys config.KeybindingConfig) {
+ t.Views().Worktrees().
+ Focus().
+ Lines(
+ Contains("repo (main)"),
+ Contains("linked-worktree"),
+ ).
+ NavigateToLine(Contains("linked-worktree")).
+ Press("d").
+ Lines(
+ Contains("repo (main)"),
+ )
+ },
+})