Skip to content

Commit 429eb3e

Browse files
committed
added few cases
1 parent 494b4b8 commit 429eb3e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

interchaintest/basic_test.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,12 @@ func TestBasicChain(t *testing.T) {
4848
)
4949
user := users[0]
5050

51+
t.Run("validate configuration", func(t *testing.T) {
52+
// Check that the chain is configured correctly
53+
require.Equal(t, chain.Config().Denom, "npush")
54+
require.Equal(t, chain.Config().ChainID, "localchain-1")
55+
require.Equal(t, chain.Config().GasPrices, "0npush")
56+
})
5157
t.Run("validate funding", func(t *testing.T) {
5258
bal, err := chain.BankQueryBalance(ctx, user.FormattedAddress(), chain.Config().Denom)
5359
require.NoError(t, err)

0 commit comments

Comments
 (0)