From 12e02dc63a430a14c8b0d4e5a58396b5476816d2 Mon Sep 17 00:00:00 2001 From: lumtis Date: Thu, 15 Aug 2024 20:41:50 +0200 Subject: [PATCH] remove rate limiter test --- cmd/zetae2e/local/local.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/cmd/zetae2e/local/local.go b/cmd/zetae2e/local/local.go index c93be2396a..2fdb61df17 100644 --- a/cmd/zetae2e/local/local.go +++ b/cmd/zetae2e/local/local.go @@ -296,7 +296,6 @@ func localE2ETest(cmd *cobra.Command, _ []string) { if testAdmin { eg.Go(adminTestRoutine(conf, deployerRunner, verbose, e2etests.TestWhitelistERC20Name, - e2etests.TestRateLimiterName, e2etests.TestPauseZRC20Name, e2etests.TestUpdateBytecodeZRC20Name, e2etests.TestUpdateBytecodeConnectorName, @@ -305,6 +304,12 @@ func localE2ETest(cmd *cobra.Command, _ []string) { e2etests.TestPauseERC20CustodyName, e2etests.TestMigrateERC20CustodyFundsName, + // Test the rate limiter functionalities + // this test is currently incomplete and takes 10m to run + // TODO: define assertion, and make more optimized + // 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