Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 5 additions & 29 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 @@ -16,7 +16,7 @@ notify = "8.2.0"
clap = { version = "4.6.0", features = ["derive"] }
local-ip-address = "0.6.11"
log = "0.4.29"
env_logger = "0.11.9"
env_logger = "0.11.10"
notify-debouncer-full = "0.7.0"
tokio = { version = "1.51.0", features = ["full"] }
axum = { version = "0.8.8", features = ["ws"]}
Expand Down
16 changes: 8 additions & 8 deletions tests/end-to-end.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@ fn subject_with(args: &[impl AsRef<OsStr>]) -> (Child, String) {

async fn fresh_browser() -> (Browser, TempDir) {
let data_dir = tempdir().unwrap();
let (browser, handler) = Browser::launch(
BrowserConfig::builder()
.user_data_dir(data_dir.path())
.build()
.unwrap(),
)
.await
.unwrap();
// GitHub's Windows runners can take longer than chromiumoxide's default
// 20-second launch timeout to expose the DevTools websocket URL.
let config = BrowserConfig::builder()
.user_data_dir(data_dir.path())
.launch_timeout(Duration::from_secs(60))
.build()
.unwrap();
let (browser, handler) = Browser::launch(config).await.unwrap();
tokio::spawn(async move {
handler.for_each(async |_| {}).await;
});
Expand Down
Loading