mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-04-19 17:02:18 +03:00
38 lines
974 B
Go
38 lines
974 B
Go
package commit
|
|
|
|
import (
|
|
"github.com/jesseduffield/lazygit/pkg/config"
|
|
. "github.com/jesseduffield/lazygit/pkg/integration/components"
|
|
)
|
|
|
|
var Highlight = NewIntegrationTest(NewIntegrationTestArgs{
|
|
Description: "Verify that the commit view highlights the correct lines",
|
|
ExtraCmdArgs: []string{},
|
|
Skip: false,
|
|
SetupConfig: func(config *config.AppConfig) {
|
|
config.GetAppState().GitLogShowGraph = "always"
|
|
config.GetUserConfig().Gui.AuthorColors = map[string]string{
|
|
"CI": "red",
|
|
}
|
|
},
|
|
SetupRepo: func(shell *Shell) {
|
|
shell.EmptyCommit("one")
|
|
shell.EmptyCommit("two")
|
|
shell.EmptyCommit("three")
|
|
},
|
|
Run: func(t *TestDriver, keys config.KeybindingConfig) {
|
|
highlightedColor := "#ffffff"
|
|
|
|
t.Views().Commits().
|
|
DoesNotContainColoredText(highlightedColor, "◯").
|
|
Focus().
|
|
ContainsColoredText(highlightedColor, "◯")
|
|
|
|
t.Views().Files().
|
|
Focus()
|
|
|
|
t.Views().Commits().
|
|
DoesNotContainColoredText(highlightedColor, "◯")
|
|
},
|
|
})
|