From 89f112c396899abf626ac7a53947a5bc8bde303e Mon Sep 17 00:00:00 2001 From: gfanton <8671905+gfanton@users.noreply.github.com> Date: Thu, 23 Nov 2023 15:20:38 +0100 Subject: [PATCH] chore: add test placeholder Signed-off-by: gfanton <8671905+gfanton@users.noreply.github.com> --- gno.land/pkg/gnoclient/client_test.go | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/gno.land/pkg/gnoclient/client_test.go b/gno.land/pkg/gnoclient/client_test.go index beef253c8dc..21ed089a238 100644 --- a/gno.land/pkg/gnoclient/client_test.go +++ b/gno.land/pkg/gnoclient/client_test.go @@ -44,8 +44,11 @@ func TestClient_Request(t *testing.T) { data, res, err := client.Render("gno.land/r/demo/boards", "") require.NoError(t, err) - fmt.Println("data", data) - fmt.Println("res", res) - // TODO: xxx + // XXX: need more test + + // XXX: need validation + fmt.Println("data:", data) + fmt.Println("res: ", res) + require.FailNow(t, "forcing failure: replace this by a real test") }