Skip to content

Commit

Permalink
ignore specific ipc error on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
zerosnacks committed Apr 25, 2024
1 parent 7afe160 commit ef2e909
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions crates/anvil/tests/it/ipc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ async fn can_get_block_number_ipc() {
assert_eq!(num, block_num.to::<u64>());
}

// TODO: throws: `Transport(Custom(Os { code: 2, kind: NotFound, message: "The system cannot find
// the file specified." }))` on Windows
#[tokio::test(flavor = "multi_thread")]
#[cfg_attr(target_os = "windows", ignore)]
async fn test_sub_new_heads_ipc() {
let (api, handle) = spawn(ipc_config()).await;

Expand Down

0 comments on commit ef2e909

Please sign in to comment.