You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
obws/tests/integration/streaming.rs

18 lines
356 B
Rust

use anyhow::Result;
use crate::common;
#[tokio::test]
async fn streaming() -> Result<()> {
let client = common::new_client().await?;
let client = client.streaming();
client.status().await?;
// TODO: Dangerous to run as it would make us live stream.
// client.start_stream().await?;
// client.stop_stream().await?;
Ok(())
}