mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-07-30 03:23:08 +03:00
Merge pull request #2377 from shinhs0506/clear-staging-after-commit
This commit is contained in:
@ -53,8 +53,12 @@ var Staged = NewIntegrationTest(NewIntegrationTestArgs{
|
||||
Contains(commitMessage),
|
||||
)
|
||||
|
||||
t.Views().StagingSecondary().IsFocused()
|
||||
t.Views().StagingSecondary().
|
||||
IsEmpty()
|
||||
|
||||
// TODO: assert that the staging panel has been refreshed (it currently does not get correctly refreshed)
|
||||
t.Views().Staging().
|
||||
IsFocused().
|
||||
Content(Contains("+myfile content")).
|
||||
Content(DoesNotContain("+with a second line"))
|
||||
},
|
||||
})
|
||||
|
@ -53,8 +53,12 @@ var StagedWithoutHooks = NewIntegrationTest(NewIntegrationTestArgs{
|
||||
Contains("WIP" + commitMessage),
|
||||
)
|
||||
|
||||
t.Views().StagingSecondary().IsFocused()
|
||||
t.Views().StagingSecondary().
|
||||
IsEmpty()
|
||||
|
||||
// TODO: assert that the staging panel has been refreshed (it currently does not get correctly refreshed)
|
||||
t.Views().Staging().
|
||||
IsFocused().
|
||||
Content(Contains("+myfile content")).
|
||||
Content(DoesNotContain("+with a second line"))
|
||||
},
|
||||
})
|
||||
|
Reference in New Issue
Block a user