Skip to content

Commit

Permalink
chore: remove fork tests for now
Browse files Browse the repository at this point in the history
  • Loading branch information
dutterbutter committed Dec 19, 2024
1 parent 58b0ccf commit c3307c3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions e2e-tests-rust/tests/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -615,6 +615,8 @@ async fn dump_state_on_run() -> anyhow::Result<()> {
}

#[tokio::test]
#[ignore]
// TODO: Investigate a better way to test against fork to avoid flakiness. See: https://github.com/matter-labs/anvil-zksync/issues/508
async fn dump_state_on_fork() -> anyhow::Result<()> {
let temp_dir = TempDir::new("state-fork-test").expect("failed creating temporary dir");
let dump_path = temp_dir.path().join("state_dump_fork.json");
Expand Down Expand Up @@ -726,6 +728,8 @@ async fn load_state_on_run() -> anyhow::Result<()> {
}

#[tokio::test]
#[ignore]
// TODO: Investigate a better way to test against fork to avoid flakiness. See: https://github.com/matter-labs/anvil-zksync/issues/508
async fn load_state_on_fork() -> anyhow::Result<()> {
let temp_dir = TempDir::new("load-state-fork-test").expect("failed creating temporary dir");
let dump_path = temp_dir.path().join("load_state_fork.json");
Expand Down

0 comments on commit c3307c3

Please sign in to comment.