2022-08-09 21:27:12 +10:00
|
|
|
package tests
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/jesseduffield/lazygit/pkg/integration/helpers"
|
|
|
|
"github.com/jesseduffield/lazygit/pkg/integration/tests/branch"
|
|
|
|
"github.com/jesseduffield/lazygit/pkg/integration/tests/commit"
|
|
|
|
"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-11 21:28:55 +10:00
|
|
|
var Tests = []*helpers.IntegrationTest{
|
2022-08-09 21:27:12 +10:00
|
|
|
commit.Commit,
|
|
|
|
commit.NewBranch,
|
|
|
|
branch.Suggestions,
|
|
|
|
interactive_rebase.One,
|
|
|
|
}
|