mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-04-21 04:25:53 +03:00
34 lines
895 B
Go
34 lines
895 B
Go
package commit
|
|
|
|
import (
|
|
"github.com/jesseduffield/lazygit/pkg/config"
|
|
. "github.com/jesseduffield/lazygit/pkg/integration/components"
|
|
)
|
|
|
|
var Commit = NewIntegrationTest(NewIntegrationTestArgs{
|
|
Description: "Staging a couple files and committing",
|
|
ExtraCmdArgs: "",
|
|
Skip: false,
|
|
SetupConfig: func(config *config.AppConfig) {},
|
|
SetupRepo: func(shell *Shell) {
|
|
shell.CreateFile("myfile", "myfile content")
|
|
shell.CreateFile("myfile2", "myfile2 content")
|
|
},
|
|
Run: func(shell *Shell, input *Input, assert *Assert, keys config.KeybindingConfig) {
|
|
assert.CommitCount(0)
|
|
|
|
input.PrimaryAction()
|
|
input.NextItem()
|
|
input.PrimaryAction()
|
|
input.Press(keys.Files.CommitChanges)
|
|
|
|
assert.InCommitMessagePanel()
|
|
commitMessage := "my commit message"
|
|
input.Type(commitMessage)
|
|
input.Confirm()
|
|
|
|
assert.CommitCount(1)
|
|
assert.HeadCommitMessage(Equals(commitMessage))
|
|
},
|
|
})
|