1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-31 14:24:25 +03:00

test: add test for basic stash

This commit is contained in:
Andrew Hynes
2022-09-15 23:11:27 -02:30
parent e189546acb
commit db9373662a
3 changed files with 40 additions and 0 deletions

View File

@ -13,6 +13,7 @@ import (
"github.com/jesseduffield/lazygit/pkg/integration/tests/commit"
"github.com/jesseduffield/lazygit/pkg/integration/tests/custom_commands"
"github.com/jesseduffield/lazygit/pkg/integration/tests/interactive_rebase"
"github.com/jesseduffield/lazygit/pkg/integration/tests/stash"
"github.com/jesseduffield/lazygit/pkg/utils"
)
@ -27,6 +28,7 @@ var tests = []*components.IntegrationTest{
custom_commands.Basic,
custom_commands.MultiplePrompts,
custom_commands.MenuFromCommand,
stash.Stash,
}
func GetTests() []*components.IntegrationTest {