From d9b2b1e00fc7ff88659c675753242eef32f30b69 Mon Sep 17 00:00:00 2001 From: Jacob Gadikian Date: Wed, 12 Apr 2023 06:23:35 +0700 Subject: [PATCH] add comment to NewTestSupport --- app/test_access.go | 1 + 1 file changed, 1 insertion(+) diff --git a/app/test_access.go b/app/test_access.go index 3063d0b9..b040bb2a 100644 --- a/app/test_access.go +++ b/app/test_access.go @@ -24,6 +24,7 @@ type TestSupport struct { app *MigalooApp } +// NewTestSupport creates a new TestSupport instance, which provides access to the app for testing. func NewTestSupport(tb testing.TB, app *MigalooApp) *TestSupport { tb.Helper() return &TestSupport{t: tb, app: app}