summaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authorAndrew Hynes <andrew.hynes@colabsoftware.com>2022-11-12 18:09:10 -0330
committerAndrew Hynes <andrew.hynes@colabsoftware.com>2022-11-12 18:09:55 -0330
commitd7fb441a3ce85c04627c0c629166141e6cf5578a (patch)
tree644420f28bb8ae88e6f06bdc9d77bacc7a0e00d0 /pkg
parentf03e1e4e424e9b857c6dfbd23be16ba94ba5e9d8 (diff)
refactor: sort list of integration tests
Diffstat (limited to 'pkg')
-rw-r--r--pkg/integration/tests/tests.go27
1 files changed, 14 insertions, 13 deletions
diff --git a/pkg/integration/tests/tests.go b/pkg/integration/tests/tests.go
index 0765c8600..54b85c0a3 100644
--- a/pkg/integration/tests/tests.go
+++ b/pkg/integration/tests/tests.go
@@ -25,26 +25,27 @@ import (
// be sure to add it to this list.
var tests = []*components.IntegrationTest{
- commit.Commit,
- commit.NewBranch,
- branch.Suggestions,
+ bisect.Basic,
+ bisect.FromOtherBranch,
branch.Delete,
branch.Rebase,
branch.RebaseAndDrop,
- interactive_rebase.One,
- interactive_rebase.AmendMerge,
- custom_commands.Basic,
- custom_commands.MultiplePrompts,
- custom_commands.MenuFromCommand,
- bisect.Basic,
- bisect.FromOtherBranch,
+ branch.Suggestions,
cherry_pick.CherryPick,
cherry_pick.CherryPickConflicts,
+ commit.Commit,
+ commit.NewBranch,
+ custom_commands.Basic,
custom_commands.FormPrompts,
- stash.Stash,
- stash.StashIncludingUntrackedFiles,
- stash.Rename,
+ custom_commands.MenuFromCommand,
+ custom_commands.MultiplePrompts,
file.DirWithUntrackedFile,
+ interactive_rebase.AmendMerge,
+ interactive_rebase.One,
+ stash.Rename,
+ stash.Stash,
+ stash.StashIncludingUntrackedFiles,
+ stash.Stash,
}
func GetTests() []*components.IntegrationTest {