Skip to content

Commit 66e8d16

Browse files
wip
Signed-off-by: Patrick José Pereira <[email protected]>
1 parent 32a61d3 commit 66e8d16

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/helper/develop.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ async fn task(mut counter: i32) -> Result<()> {
1616
let port = cli::manager::enable_webrtc_task_test().unwrap();
1717
let driver = WebDriver::new(&format!("http://localhost:{}", port), caps)
1818
.await
19-
.unwrap_or_else(|_| std::process::exit(-1));
19+
.unwrap_or_else(|_| {
20+
error!("Failed to connect with WebDriver.");
21+
std::process::exit(-1)
22+
});
2023

2124
driver
2225
.goto("http://0.0.0.0:6020/webrtc/index.html")

0 commit comments

Comments
 (0)