1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-10 11:10:18 +02:00
lazygit/pkg/integration/tests/test_list.go

219 lines
6.9 KiB
Go
Raw Normal View History

// THIS FILE IS AUTO-GENERATED. You can regenerate it by running `go generate ./...` at the root of the lazygit repo.
package tests
import (
"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/cherry_pick"
"github.com/jesseduffield/lazygit/pkg/integration/tests/commit"
"github.com/jesseduffield/lazygit/pkg/integration/tests/config"
2023-02-19 06:01:57 +02:00
"github.com/jesseduffield/lazygit/pkg/integration/tests/conflicts"
"github.com/jesseduffield/lazygit/pkg/integration/tests/custom_commands"
"github.com/jesseduffield/lazygit/pkg/integration/tests/diff"
"github.com/jesseduffield/lazygit/pkg/integration/tests/file"
"github.com/jesseduffield/lazygit/pkg/integration/tests/filter_and_search"
"github.com/jesseduffield/lazygit/pkg/integration/tests/filter_by_path"
"github.com/jesseduffield/lazygit/pkg/integration/tests/interactive_rebase"
"github.com/jesseduffield/lazygit/pkg/integration/tests/misc"
"github.com/jesseduffield/lazygit/pkg/integration/tests/patch_building"
2023-02-22 12:15:03 +02:00
"github.com/jesseduffield/lazygit/pkg/integration/tests/reflog"
2023-02-22 12:57:32 +02:00
"github.com/jesseduffield/lazygit/pkg/integration/tests/staging"
"github.com/jesseduffield/lazygit/pkg/integration/tests/stash"
"github.com/jesseduffield/lazygit/pkg/integration/tests/submodule"
"github.com/jesseduffield/lazygit/pkg/integration/tests/sync"
2023-02-20 09:41:17 +02:00
"github.com/jesseduffield/lazygit/pkg/integration/tests/tag"
2023-02-19 04:29:04 +02:00
"github.com/jesseduffield/lazygit/pkg/integration/tests/ui"
2023-02-19 06:27:13 +02:00
"github.com/jesseduffield/lazygit/pkg/integration/tests/undo"
)
var tests = []*components.IntegrationTest{
bisect.Basic,
bisect.FromOtherBranch,
branch.CheckoutByName,
branch.CreateTag,
branch.Delete,
branch.DetachedHead,
branch.OpenWithCliArg,
branch.Rebase,
branch.RebaseAbortOnConflict,
branch.RebaseAndDrop,
branch.RebaseCancelOnConflict,
branch.RebaseDoesNotAutosquash,
branch.Reset,
2023-02-22 12:57:32 +02:00
branch.ResetUpstream,
branch.SetUpstream,
branch.Suggestions,
cherry_pick.CherryPick,
cherry_pick.CherryPickConflicts,
commit.Amend,
commit.Commit,
commit.CommitMultiline,
commit.CommitWipWithPrefix,
commit.CommitWithPrefix,
2023-02-20 09:52:45 +02:00
commit.CreateTag,
commit.DiscardOldFileChange,
commit.Highlight,
commit.History,
commit.HistoryComplex,
commit.NewBranch,
2023-02-22 12:57:32 +02:00
commit.ResetAuthor,
commit.Revert,
2023-02-19 05:47:07 +02:00
commit.RevertMerge,
commit.Reword,
2023-02-22 12:57:32 +02:00
commit.Search,
commit.SetAuthor,
commit.StageRangeOfLines,
commit.Staged,
commit.StagedWithoutHooks,
commit.Unstaged,
config.RemoteNamedStar,
2023-02-25 13:09:14 +02:00
conflicts.Filter,
conflicts.ResolveExternally,
conflicts.ResolveMultipleFiles,
2023-02-19 06:01:57 +02:00
conflicts.UndoChooseHunk,
custom_commands.BasicCmdAtRuntime,
2023-04-13 19:13:03 +02:00
custom_commands.BasicCmdFromConfig,
custom_commands.CheckForConflicts,
custom_commands.ComplexCmdAtRuntime,
custom_commands.FormPrompts,
custom_commands.MenuFromCommand,
custom_commands.MenuFromCommandsOutput,
custom_commands.MultiplePrompts,
2023-04-13 19:13:03 +02:00
custom_commands.OmitFromHistory,
custom_commands.SuggestionsCommand,
custom_commands.SuggestionsPreset,
diff.Diff,
diff.DiffAndApplyPatch,
diff.DiffCommits,
diff.IgnoreWhitespace,
file.DirWithUntrackedFile,
file.DiscardAllDirChanges,
file.DiscardChanges,
file.DiscardStagedChanges,
file.DiscardUnstagedDirChanges,
file.DiscardUnstagedFileChanges,
file.Gitignore,
2023-02-23 13:29:40 +02:00
file.RememberCommitMessageAfterFail,
filter_and_search.FilterCommitFiles,
filter_and_search.FilterFiles,
filter_and_search.FilterMenu,
filter_and_search.FilterRemoteBranches,
filter_and_search.NestedFilter,
filter_and_search.NestedFilterTransient,
filter_by_path.CliArg,
filter_by_path.SelectFile,
filter_by_path.TypeFile,
interactive_rebase.AdvancedInteractiveRebase,
interactive_rebase.AmendCommitWithConflict,
interactive_rebase.AmendFirstCommit,
interactive_rebase.AmendFixupCommit,
interactive_rebase.AmendHeadCommitDuringRebase,
interactive_rebase.AmendMerge,
interactive_rebase.AmendNonHeadCommitDuringRebase,
interactive_rebase.DropTodoCommitWithUpdateRef,
interactive_rebase.DropTodoCommitWithUpdateRefShowBranchHeads,
interactive_rebase.DropWithCustomCommentChar,
interactive_rebase.EditFirstCommit,
interactive_rebase.EditNonTodoCommitDuringRebase,
interactive_rebase.EditTheConflCommit,
interactive_rebase.FixupFirstCommit,
interactive_rebase.FixupSecondCommit,
interactive_rebase.Move,
interactive_rebase.MoveInRebase,
interactive_rebase.MoveWithCustomCommentChar,
interactive_rebase.PickRescheduled,
interactive_rebase.Rebase,
interactive_rebase.RewordCommitWithEditorAndFail,
interactive_rebase.RewordFirstCommit,
interactive_rebase.RewordLastCommit,
interactive_rebase.RewordYouAreHereCommit,
interactive_rebase.RewordYouAreHereCommitWithEditor,
interactive_rebase.SquashDownFirstCommit,
interactive_rebase.SquashDownSecondCommit,
interactive_rebase.SquashFixupsAboveFirstCommit,
interactive_rebase.SwapInRebaseWithConflict,
interactive_rebase.SwapInRebaseWithConflictAndEdit,
interactive_rebase.SwapWithConflict,
misc.ConfirmOnQuit,
2023-02-19 04:59:19 +02:00
misc.InitialOpen,
misc.RecentReposOnLaunch,
2023-02-25 04:08:45 +02:00
patch_building.Apply,
patch_building.ApplyInReverse,
patch_building.ApplyInReverseWithConflict,
patch_building.CopyPatchToClipboard,
patch_building.MoveToEarlierCommit,
patch_building.MoveToEarlierCommitNoKeepEmpty,
2023-02-25 04:08:45 +02:00
patch_building.MoveToIndex,
patch_building.MoveToIndexPartOfAdjacentAddedLines,
2023-02-25 04:08:45 +02:00
patch_building.MoveToIndexPartial,
patch_building.MoveToIndexWithConflict,
patch_building.MoveToLaterCommit,
patch_building.MoveToLaterCommitPartialHunk,
2023-02-25 04:08:45 +02:00
patch_building.MoveToNewCommit,
patch_building.MoveToNewCommitPartialHunk,
2023-02-25 04:08:45 +02:00
patch_building.RemoveFromCommit,
patch_building.ResetWithEscape,
patch_building.SelectAllFiles,
patch_building.SpecificSelection,
patch_building.StartNewPatch,
2023-02-22 12:15:03 +02:00
reflog.Checkout,
reflog.CherryPick,
reflog.Patch,
reflog.Reset,
2023-02-23 13:29:40 +02:00
staging.DiffContextChange,
staging.DiscardAllChanges,
2023-02-22 12:57:32 +02:00
staging.Search,
2023-02-23 13:29:40 +02:00
staging.StageHunks,
staging.StageLines,
staging.StageRanges,
2023-02-20 12:52:27 +02:00
stash.Apply,
stash.ApplyPatch,
stash.CreateBranch,
stash.Drop,
stash.Pop,
stash.PreventDiscardingFileChanges,
stash.Rename,
stash.Stash,
2023-02-20 12:52:27 +02:00
stash.StashAll,
stash.StashAndKeepIndex,
stash.StashIncludingUntrackedFiles,
2023-02-20 12:52:27 +02:00
stash.StashStaged,
stash.StashUnstaged,
submodule.Add,
submodule.Enter,
submodule.Remove,
submodule.Reset,
sync.FetchPrune,
2023-02-19 04:38:15 +02:00
sync.ForcePush,
2023-02-19 04:51:45 +02:00
sync.ForcePushMultipleMatching,
sync.ForcePushMultipleUpstream,
2023-02-19 02:48:17 +02:00
sync.Pull,
2023-02-19 02:51:42 +02:00
sync.PullAndSetUpstream,
2023-02-22 13:25:18 +02:00
sync.PullMerge,
sync.PullMergeConflict,
sync.PullRebase,
sync.PullRebaseConflict,
sync.PullRebaseInteractiveConflict,
sync.PullRebaseInteractiveConflictDrop,
2023-02-21 12:49:48 +02:00
sync.Push,
sync.PushAndAutoSetUpstream,
sync.PushAndSetUpstream,
sync.PushFollowTags,
sync.PushNoFollowTags,
sync.PushTag,
sync.PushWithCredentialPrompt,
sync.RenameBranchAndPull,
2023-02-20 09:45:14 +02:00
tag.Checkout,
2023-02-20 09:41:17 +02:00
tag.CrudAnnotated,
tag.CrudLightweight,
2023-02-20 09:48:37 +02:00
tag.Reset,
ui.Accordion,
2023-02-23 13:29:40 +02:00
ui.DoublePopup,
2023-07-20 13:08:56 +02:00
ui.EmptyMenu,
2023-02-20 10:29:15 +02:00
ui.SwitchTabFromMenu,
2023-02-19 09:33:01 +02:00
undo.UndoCheckoutAndDrop,
2023-02-19 06:27:13 +02:00
undo.UndoDrop,
}