use quantum_worm::{receive_file, send_file};
#[tokio::test]
async fn test_file_transfer() {
let test_file = "txts/test_file.txt"; let received_file = "txts/received_file.txt";
let sent_data = send_file(test_file).await.unwrap();
receive_file(received_file, sent_data).await.unwrap();
}