diff --git a/tests/src/e2e/eth_bridge_tests.rs b/tests/src/e2e/eth_bridge_tests.rs index aa5f6576596..b276dd409ee 100644 --- a/tests/src/e2e/eth_bridge_tests.rs +++ b/tests/src/e2e/eth_bridge_tests.rs @@ -19,8 +19,6 @@ fn storage_key(path: &str) -> String { } #[test] -#[ignore] -// TODO(namada#418): re-enable once working again fn everything() { const LEDGER_STARTUP_TIMEOUT_SECONDS: u64 = 30; const CLIENT_COMMAND_TIMEOUT_SECONDS: u64 = 30; diff --git a/tests/src/e2e/ledger_tests.rs b/tests/src/e2e/ledger_tests.rs index 90e018a7386..11c49e8e24b 100644 --- a/tests/src/e2e/ledger_tests.rs +++ b/tests/src/e2e/ledger_tests.rs @@ -63,8 +63,6 @@ fn run_ledger() -> Result<()> { /// 2. Submit a valid token transfer tx /// 3. Check that all the nodes processed the tx with the same result #[test] -#[ignore] -// TODO(namada#418): re-enable once working again fn test_node_connectivity() -> Result<()> { // Setup 2 genesis validator nodes let test = @@ -133,8 +131,6 @@ fn test_node_connectivity() -> Result<()> { /// 3. Check that the node detects this /// 4. Check that the node shuts down #[test] -#[ignore] -// TODO(namada#418): re-enable once working again fn test_anoma_shuts_down_if_tendermint_dies() -> Result<()> { let test = setup::single_node_net()?; @@ -171,8 +167,6 @@ fn test_anoma_shuts_down_if_tendermint_dies() -> Result<()> { /// 5. Reset the ledger's state /// 6. Run the ledger again, it should start from fresh state #[test] -#[ignore] -// TODO(namada#418): re-enable once working again fn run_ledger_load_state_and_reset() -> Result<()> { let test = setup::single_node_net()?; @@ -240,8 +234,6 @@ fn run_ledger_load_state_and_reset() -> Result<()> { /// 6. Query token balance /// 7. Query the raw bytes of a storage key #[test] -#[ignore] -// TODO(namada#418): re-enable once working again fn ledger_txs_and_queries() -> Result<()> { let test = setup::network(|genesis| genesis, None)?; @@ -414,8 +406,6 @@ fn ledger_txs_and_queries() -> Result<()> { /// 4. Restart the ledger /// 5. Submit and invalid transactions (malformed) #[test] -#[ignore] -// TODO(namada#418): re-enable once working again fn invalid_transactions() -> Result<()> { let test = setup::single_node_net()?; @@ -922,8 +912,6 @@ fn pos_init_validator() -> Result<()> { /// 1. Run the ledger node with 10s consensus timeout /// 2. Spawn threads each submitting token transfer tx #[test] -#[ignore] -// TODO(namada#418): re-enable once working again fn ledger_many_txs_in_a_block() -> Result<()> { let test = Arc::new(setup::network( |genesis| genesis, @@ -1528,8 +1516,6 @@ fn generate_proposal_json( /// 4. Submit a valid token transfer tx from one validator to the other /// 5. Check that all the nodes processed the tx with the same result #[test] -#[ignore] -// TODO(namada#418): re-enable once working again fn test_genesis_validators() -> Result<()> { use std::collections::HashMap; use std::net::SocketAddr;