Skip to content

Commit

Permalink
add test
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianElvis committed Dec 11, 2024
1 parent af50727 commit 4af58ca
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,7 @@ vendor/
coverage.txt

demo/build/

tmp/

# E2E test files
contrib/images/ibcsim-bcd/.testnets/
9 changes: 9 additions & 0 deletions tests/e2e/bcd_consumer_integration_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
//go:build e2e
// +build e2e

package e2e

import (
Expand All @@ -8,6 +11,7 @@ import (
"os/exec"
"path/filepath"
"strings"
"testing"
"time"

sdkmath "cosmossdk.io/math"
Expand Down Expand Up @@ -59,6 +63,11 @@ var (
czDelBtcSk, czDelBtcPk, _ = datagen.GenRandomBTCKeyPair(r)
)

// TestBCDConsumerIntegrationTestSuite includes babylon<->bcd integration related tests
func TestBCDConsumerIntegrationTestSuite(t *testing.T) {
suite.Run(t, new(BCDConsumerIntegrationTestSuite))
}

type BCDConsumerIntegrationTestSuite struct {
suite.Suite

Expand Down

0 comments on commit 4af58ca

Please sign in to comment.