mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-03-03 15:02:52 +02:00
32 lines
886 B
Go
32 lines
886 B
Go
package stash
|
|
|
|
import (
|
|
"github.com/jesseduffield/lazygit/pkg/config"
|
|
. "github.com/jesseduffield/lazygit/pkg/integration/components"
|
|
)
|
|
|
|
var Stash = NewIntegrationTest(NewIntegrationTestArgs{
|
|
Description: "Stashing files",
|
|
ExtraCmdArgs: "",
|
|
Skip: false,
|
|
SetupConfig: func(config *config.AppConfig) {},
|
|
SetupRepo: func(shell *Shell) {
|
|
shell.EmptyCommit("initial commit")
|
|
shell.CreateFile("file", "content")
|
|
shell.GitAddAll()
|
|
},
|
|
Run: func(shell *Shell, input *Input, assert *Assert, keys config.KeybindingConfig) {
|
|
assert.StashCount(0)
|
|
assert.WorkingTreeFileCount(1)
|
|
|
|
input.Press(keys.Files.ViewStashOptions)
|
|
|
|
input.Menu().Title(Equals("Stash options")).Select(MatchesRegexp("stash all changes$")).Confirm()
|
|
|
|
input.Prompt().Title(Equals("Stash changes")).Type("my stashed file").Confirm()
|
|
|
|
assert.StashCount(1)
|
|
assert.WorkingTreeFileCount(0)
|
|
},
|
|
})
|