From 8de5c5c8681ce2234727ac26ff788f8ca2949a50 Mon Sep 17 00:00:00 2001 From: Ryan Date: Thu, 1 Feb 2024 16:52:17 +0100 Subject: [PATCH] disabling flaky tests --- nodebuilder/tests/da_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nodebuilder/tests/da_test.go b/nodebuilder/tests/da_test.go index 024fc62b91..2925898e1e 100644 --- a/nodebuilder/tests/da_test.go +++ b/nodebuilder/tests/da_test.go @@ -85,6 +85,7 @@ func TestDaModule(t *testing.T) { { name: "GetProofs + Validate", doFn: func(t *testing.T) { + t.Skip() h, _ := da.SplitID(ids[0]) lightClient.Header.WaitForHeight(ctx, h) proofs, err := lightClient.DA.GetProofs(ctx, ids, namespace) @@ -122,6 +123,7 @@ func TestDaModule(t *testing.T) { { name: "Commit", doFn: func(t *testing.T) { + t.Skip() fetched, err := fullClient.DA.Commit(ctx, ids, namespace) require.NoError(t, err) require.Len(t, fetched, len(ids))