Skip to content

Commit

Permalink
feat: ibc conformance test (#416)
Browse files Browse the repository at this point in the history
  • Loading branch information
boojamya authored Oct 25, 2024
1 parent 2c3bdb8 commit d0d1b19
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions e2e/conformance_test.go
Original file line number Diff line number Diff line change
@@ -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)
}

0 comments on commit d0d1b19

Please sign in to comment.