Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 3 additions & 11 deletions src/rpc/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -807,18 +807,10 @@ mod tests {
// `cargo test --lib -- --exact 'rpc::tests::openrpc'`
// `cargo insta review`
#[test]
#[ignore = "https://github.com/ChainSafe/forest/issues/4032"]
fn openrpc() {
for path in [ApiPaths::V0, ApiPaths::V1] {
let _spec = super::openrpc(path, None);
// TODO(forest): https://github.com/ChainSafe/forest/issues/4032
// this is disabled because it causes lots of merge
// conflicts.
// We should consider re-enabling it when our RPC is
// more stable.
// (We still run this test to make sure we're not
// violating other invariants)
insta::assert_yaml_snapshot!(_spec);
for path in [ApiPaths::V0, ApiPaths::V1, ApiPaths::V2] {
let spec = super::openrpc(path, None);
insta::assert_yaml_snapshot!(path.path(), spec);
}
}

Expand Down
Loading
Loading