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/client.rs

14 lines
244 B
Rust

use anyhow::Result;
use obws::requests::EventSubscription;
use crate::common;
#[tokio::test]
async fn client() -> Result<()> {
let client = common::new_client().await?;
client.reidentify(EventSubscription::ALL).await?;
Ok(())
}