1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-30 03:23:08 +03:00

add bisect integration test

This commit is contained in:
Jesse Duffield
2022-08-22 19:34:02 +10:00
parent 79620fc6cf
commit 010f430d1f
141 changed files with 169 additions and 114 deletions

View File

@ -9,6 +9,7 @@ import (
"github.com/jesseduffield/generics/set"
"github.com/jesseduffield/generics/slices"
"github.com/jesseduffield/lazygit/pkg/integration/components"
"github.com/jesseduffield/lazygit/pkg/integration/tests/bisect"
"github.com/jesseduffield/lazygit/pkg/integration/tests/branch"
"github.com/jesseduffield/lazygit/pkg/integration/tests/commit"
"github.com/jesseduffield/lazygit/pkg/integration/tests/custom_commands"
@ -27,6 +28,7 @@ var tests = []*components.IntegrationTest{
custom_commands.Basic,
custom_commands.MultiplePrompts,
custom_commands.MenuFromCommand,
bisect.Basic,
}
func GetTests() []*components.IntegrationTest {