mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-04-15 11:56:37 +02:00
17 lines
457 B
Go
17 lines
457 B
Go
package integration_tests
|
|
|
|
import (
|
|
"github.com/jesseduffield/lazygit/pkg/integration/integration_tests/branch"
|
|
"github.com/jesseduffield/lazygit/pkg/integration/integration_tests/commit"
|
|
"github.com/jesseduffield/lazygit/pkg/integration/types"
|
|
)
|
|
|
|
// 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.
|
|
|
|
var Tests = []types.Test{
|
|
commit.Commit,
|
|
commit.NewBranch,
|
|
branch.Suggestions,
|
|
}
|