2023-02-20 08:29:43 +01:00
|
|
|
package interactive_rebase
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/jesseduffield/lazygit/pkg/config"
|
|
|
|
. "github.com/jesseduffield/lazygit/pkg/integration/components"
|
|
|
|
)
|
|
|
|
|
|
|
|
var AmendFirstCommit = NewIntegrationTest(NewIntegrationTestArgs{
|
|
|
|
Description: "Amends a staged file to the first (initial) commit.",
|
2023-05-21 17:00:29 +10:00
|
|
|
ExtraCmdArgs: []string{},
|
2023-02-20 08:29:43 +01:00
|
|
|
Skip: false,
|
|
|
|
SetupConfig: func(config *config.AppConfig) {},
|
|
|
|
SetupRepo: func(shell *Shell) {
|
|
|
|
shell.
|
|
|
|
CreateNCommits(2).
|
|
|
|
CreateFileAndAdd("fixup-file", "fixup content")
|
|
|
|
},
|
|
|
|
Run: func(t *TestDriver, keys config.KeybindingConfig) {
|
|
|
|
t.Views().Commits().
|
|
|
|
Focus().
|
|
|
|
Lines(
|
|
|
|
Contains("commit 02"),
|
|
|
|
Contains("commit 01"),
|
|
|
|
).
|
2023-02-26 11:49:15 +11:00
|
|
|
NavigateToLine(Contains("commit 01")).
|
2023-02-20 08:29:43 +01:00
|
|
|
Press(keys.Commits.AmendToCommit).
|
|
|
|
Tap(func() {
|
|
|
|
t.ExpectPopup().Confirmation().
|
2023-05-25 21:11:51 +10:00
|
|
|
Title(Equals("Amend commit")).
|
2023-02-20 08:29:43 +01:00
|
|
|
Content(Contains("Are you sure you want to amend this commit with your staged files?")).
|
|
|
|
Confirm()
|
|
|
|
}).
|
|
|
|
Lines(
|
|
|
|
Contains("commit 02"),
|
|
|
|
Contains("commit 01").IsSelected(),
|
|
|
|
)
|
|
|
|
|
|
|
|
t.Views().Main().
|
|
|
|
Content(Contains("fixup content"))
|
|
|
|
},
|
|
|
|
})
|