From d0d1b1906cd110854641d38d6cc6e745c63ef427 Mon Sep 17 00:00:00 2001 From: Dan Kanefsky <56059752+boojamya@users.noreply.github.com> Date: Fri, 25 Oct 2024 05:15:57 -0700 Subject: [PATCH] feat: ibc conformance test (#416) --- e2e/conformance_test.go | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 e2e/conformance_test.go diff --git a/e2e/conformance_test.go b/e2e/conformance_test.go new file mode 100644 index 00000000..a9b31c19 --- /dev/null +++ b/e2e/conformance_test.go @@ -0,0 +1,23 @@ +package e2e_test + +import ( + "context" + "testing" + + "github.com/noble-assets/noble/e2e" + "github.com/strangelove-ventures/interchaintest/v8/conformance" +) + +func TestConformance(t *testing.T) { + if testing.Short() { + t.Skip() + } + t.Parallel() + + ctx := context.Background() + + var nw e2e.NobleWrapper + nw, ibcSimd, rf, r, ibcPathName, rep, _, client, network := e2e.NobleSpinUpIBC(t, ctx, false) + + conformance.TestChainPair(t, ctx, client, network, nw.Chain, ibcSimd, rf, rep, r, ibcPathName) +}