Skip to content

Commit

Permalink
toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Sidharth-Singh10 committed Nov 6, 2024
1 parent 77ee20e commit a657d8b
Show file tree
Hide file tree
Showing 3 changed files with 118 additions and 17 deletions.
126 changes: 114 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ name = "rusty_backend"


[workspace]
members = [".","migration","entity"]
members = [".","migration","entity", "voice_channel"]


[dependencies]
Expand Down
7 changes: 3 additions & 4 deletions voice_channel/tests/signals.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
use tokio_tungstenite::tungstenite::Message;
use voice_channel::run;
use futures_util::SinkExt;
use futures_util::StreamExt;
use tokio_tungstenite::tungstenite::Message;
use voice_channel::run;
#[tokio::test]
async fn health_check_works() {

spawn_app().await;

let (mut ws_stream, _) = tokio_tungstenite::connect_async(format!("ws://127.0.0.1:5555/ws/1"))
.await
.expect("Failed to connect");
Expand Down

0 comments on commit a657d8b

Please sign in to comment.