Files
pulse-api/internal/health/health_test.go
Cosmo b91e67ac1d
Some checks failed
CI / ci (push) Failing after 47s
ci: add Gitea Actions workflows and placeholder tests
2026-03-01 00:05:08 +00:00

11 lines
155 B
Go

package health
import "testing"
func TestHealthCheck(t *testing.T) {
status := "ok"
if status != "ok" {
t.Errorf("expected ok, got %s", status)
}
}