Skip to content

Commit

Permalink
Add new e2e test to e2e workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gjermundgaraba committed Dec 29, 2024
1 parent 2003d5f commit a9e9e3c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ jobs:
- TestWithRelayerTestSuite/TestTimeoutPacketFromEth_Plonk
- TestWithRelayerTestSuite/Test_10_TimeoutPacketFromEth_Groth16
- TestWithRelayerTestSuite/Test_5_TimeoutPacketFromEth_Plonk
- TestWithRelayerTestSuite/TestRecvPacketToCosmos_Groth16
- TestWithCosmosRelayerTestSuite/TestRelayerInfo
- TestWithCosmosRelayerTestSuite/TestICS20RecvAndAckPacket
- TestWithCosmosRelayerTestSuite/Test_10_ICS20RecvAndAckPacket
Expand Down
4 changes: 3 additions & 1 deletion e2e/interchaintestv8/relayer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ func (s *RelayerTestSuite) ICS20TimeoutFromEthereumToTimeoutTest(
}

func (s *RelayerTestSuite) TestRecvPacketToCosmos_Groth16() {
// TODO: Fail if not PoS?
// TODO: Skip if not PoS?
ctx := context.Background()
s.RecvPacketCosmosTest(ctx, operator.ProofTypeGroth16, 1)
}
Expand Down Expand Up @@ -808,4 +808,6 @@ func (s *RelayerTestSuite) RecvPacketCosmosTest(ctx context.Context, proofType o
s.Require().Equal(totalTransferAmount.Uint64(), resp.Balance.Amount.Uint64())
s.Require().Equal(denomOnCosmos.IBCDenom(), resp.Balance.Denom)
}))

// TODO: Ack back?
}

0 comments on commit a9e9e3c

Please sign in to comment.