summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-05-07 15:42:36 +1000
committerJesse Duffield <jessedduffield@gmail.com>2022-05-07 16:02:04 +1000
commit3bf0c9ef441f9343172ed71b5e5947c69e66ac9a (patch)
treeba2aace32d469336eed58c8a988ef95c2061240e /test
parentcd5b041b0f8b95b473849d222b71aa2fe3b24899 (diff)
more documentation
Diffstat (limited to 'test')
-rw-r--r--test/lazyintegration/main.go2
-rw-r--r--test/runner/main.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/lazyintegration/main.go b/test/lazyintegration/main.go
index 2d8e4a4a9..89d4842b8 100644
--- a/test/lazyintegration/main.go
+++ b/test/lazyintegration/main.go
@@ -14,7 +14,7 @@ import (
"github.com/jesseduffield/lazygit/pkg/secureexec"
)
-// this program lets you manage integration tests in a TUI.
+// this program lets you manage integration tests in a TUI. See docs/Integration_Tests.md for more info.
type App struct {
tests []*integration.Test
diff --git a/test/runner/main.go b/test/runner/main.go
index 509b66772..58ccd591f 100644
--- a/test/runner/main.go
+++ b/test/runner/main.go
@@ -11,7 +11,7 @@ import (
"github.com/stretchr/testify/assert"
)
-// see https://github.com/jesseduffield/lazygit/blob/master/docs/Integration_Tests.md
+// see docs/Integration_Tests.md
// This file can be invoked directly, but you might find it easier to go through
// test/lazyintegration/main.go, which provides a convenient gui wrapper to integration tests.
//