Fixed main_test never starting because of port misconfiguration

This commit is contained in:
2025-02-18 23:49:39 +11:00
parent 46dd86cdae
commit 90821abcd6

View File

@@ -20,9 +20,12 @@ func Test_main(t *testing.T) {
t.Cleanup(cancel) t.Cleanup(cancel)
args := map[string]string{} args := map[string]string{}
var stdout bytes.Buffer var stdout bytes.Buffer
os.Setenv("SECRET_KEY", ".")
os.Setenv("HOST", "127.0.0.1")
os.Setenv("PORT", "3232")
go run(ctx, &stdout, args) go run(ctx, &stdout, args)
waitForReady(ctx, 10*time.Second, "http://localhost:3333/healthz") waitForReady(ctx, 10*time.Second, "http://127.0.0.1:3232/healthz")
t.Run("SIGUSR1 puts database into global lock", func(t *testing.T) { t.Run("SIGUSR1 puts database into global lock", func(t *testing.T) {
done := make(chan bool) done := make(chan bool)