Skip to content

Commit

Permalink
test(e2e): temporarily disable rate limiter e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
lumtis committed Jul 11, 2024
1 parent d0db41c commit b1e91b2
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion cmd/zetae2e/local/local.go
Original file line number Diff line number Diff line change
Expand Up @@ -273,12 +273,20 @@ func localE2ETest(cmd *cobra.Command, _ []string) {
}
if testAdmin {
eg.Go(adminTestRoutine(conf, deployerRunner, verbose,
e2etests.TestRateLimiterName,
e2etests.TestPauseZRC20Name,
e2etests.TestUpdateBytecodeZRC20Name,
e2etests.TestUpdateBytecodeConnectorName,
e2etests.TestDepositEtherLiquidityCapName,

// TestRateLimiterName tests rate limiter functionality.
// Currently, there is a bug with the test and it is therefore disabled (see issue below)
// We disable the test as a workaround for the time being as it doesn't effectively test the functionality
// TODO: fix the error causing the test failure
// https://github.com/zeta-chain/node/issues/2424
// TODO: define proper threshold for test assertion
// https://github.com/zeta-chain/node/issues/2090
// e2etests.TestRateLimiterName,

// TestMigrateChainSupportName tests EVM chain migration. Currently this test doesn't work with Anvil because pre-EIP1559 txs are not supported
// See issue below for details
// TODO: renenable this test as per the issue below
Expand Down

0 comments on commit b1e91b2

Please sign in to comment.