From b1e91b2f380aef2a4089ffc001de409252974503 Mon Sep 17 00:00:00 2001 From: lumtis Date: Thu, 11 Jul 2024 15:43:49 +0200 Subject: [PATCH] test(e2e): temporarily disable rate limiter e2e test --- cmd/zetae2e/local/local.go | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/cmd/zetae2e/local/local.go b/cmd/zetae2e/local/local.go index 7e00f9ba5b..4761fb40fe 100644 --- a/cmd/zetae2e/local/local.go +++ b/cmd/zetae2e/local/local.go @@ -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