mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-04 08:25:42 +00:00
17 lines
332 B
Go
17 lines
332 B
Go
package admin_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/zitadel/zitadel/pkg/grpc/admin"
|
|
)
|
|
|
|
func TestServer_Healthz(t *testing.T) {
|
|
client := admin.NewAdminServiceClient(Tester.ClientConn)
|
|
_, err := client.Healthz(context.TODO(), &admin.HealthzRequest{})
|
|
require.NoError(t, err)
|
|
}
|