/// Integration tests for rskit-server.
/// Full gRPC server integration tests require a live listener and are
/// marked `#[ignore]`. Run with `cargo test -- --ignored` when a
/// test gRPC server is available.
userskit_server::config::GrpcServerConfig;#[test]fndefault_config_is_valid(){let cfg =GrpcServerConfig::default();assert_eq!(cfg.port,50051);}