summaryrefslogtreecommitdiffstats
path: root/pkg/integration/tests/tests.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-12-21 22:52:23 +1100
committerJesse Duffield <jessedduffield@gmail.com>2022-12-21 22:52:23 +1100
commit7c7f7bf9b9c8cc29cc785b7fec4128e1b54dbad1 (patch)
tree99a4ac230b3dc494fb6e30e5458cc15d48a2face /pkg/integration/tests/tests.go
parent57a1817debedc6a43d8200f662fe6b2a40127027 (diff)
migrate diffing integration tests
Diffstat (limited to 'pkg/integration/tests/tests.go')
-rw-r--r--pkg/integration/tests/tests.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/integration/tests/tests.go b/pkg/integration/tests/tests.go
index 3feeb2d81..53961363e 100644
--- a/pkg/integration/tests/tests.go
+++ b/pkg/integration/tests/tests.go
@@ -16,6 +16,7 @@ import (
"github.com/jesseduffield/lazygit/pkg/integration/tests/commit"
"github.com/jesseduffield/lazygit/pkg/integration/tests/config"
"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/interactive_rebase"
"github.com/jesseduffield/lazygit/pkg/integration/tests/misc"
@@ -57,6 +58,9 @@ var tests = []*components.IntegrationTest{
stash.Stash,
stash.StashIncludingUntrackedFiles,
config.RemoteNamedStar,
+ diff.Diff,
+ diff.DiffAndApplyPatch,
+ diff.DiffCommits,
}
func GetTests() []*components.IntegrationTest {