mango-v4/programs/mango-v4/tests/cases/test_benchmark.rs

12 lines
250 B
Rust

use super::*;
#[tokio::test]
async fn test_benchmark() -> Result<(), TransportError> {
let context = TestContext::new().await;
let solana = &context.solana.clone();
send_tx(solana, BenchmarkInstruction {}).await.unwrap();
Ok(())
}