2022-08-09 13:27:12 +02:00
|
|
|
package tests
|
|
|
|
|
|
|
|
import (
|
2022-08-12 01:19:39 +02:00
|
|
|
"github.com/jesseduffield/lazygit/pkg/integration/components"
|
2022-08-09 13:27:12 +02:00
|
|
|
"github.com/jesseduffield/lazygit/pkg/integration/tests/branch"
|
|
|
|
"github.com/jesseduffield/lazygit/pkg/integration/tests/commit"
|
2022-08-14 11:15:21 +02:00
|
|
|
"github.com/jesseduffield/lazygit/pkg/integration/tests/custom_commands"
|
2022-08-09 13:27:12 +02:00
|
|
|
"github.com/jesseduffield/lazygit/pkg/integration/tests/interactive_rebase"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Here is where we lists the actual tests that will run. When you create a new test,
|
|
|
|
// be sure to add it to this list.
|
|
|
|
|
2022-08-12 01:19:39 +02:00
|
|
|
var Tests = []*components.IntegrationTest{
|
2022-08-09 13:27:12 +02:00
|
|
|
commit.Commit,
|
|
|
|
commit.NewBranch,
|
|
|
|
branch.Suggestions,
|
|
|
|
interactive_rebase.One,
|
2022-08-14 11:15:21 +02:00
|
|
|
custom_commands.Basic,
|
2022-08-14 12:13:39 +02:00
|
|
|
custom_commands.MultiplePrompts,
|
2022-08-09 13:27:12 +02:00
|
|
|
}
|