diff --git a/gno.land/pkg/gnoclient/client_test.go b/gno.land/pkg/gnoclient/client_test.go index e1b59d2d466..418a95aa997 100644 --- a/gno.land/pkg/gnoclient/client_test.go +++ b/gno.land/pkg/gnoclient/client_test.go @@ -1,7 +1,6 @@ package gnoclient import ( - "fmt" "testing" "github.com/gnolang/gno/gno.land/pkg/integration" @@ -44,11 +43,10 @@ func TestClient_Request(t *testing.T) { data, res, err := client.Render("gno.land/r/demo/boards", "") require.NoError(t, err) + require.NotEmpty(t, data) - // XXX: need more test + require.NotNil(t, res) + require.NotEmpty(t, res.Response.Data) - // XXX: need validation - fmt.Println("data:", data) - fmt.Println("res: ", res) - require.FailNow(t, "forcing failure: replace this by a real test") + // XXX: need more test }