Skip to content

Commit

Permalink
patch
Browse files Browse the repository at this point in the history
  • Loading branch information
mrchantey committed Jan 17, 2024
1 parent c38e8cc commit 3c236b6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"crates\\bevy_webxr"
],
"search.exclude": {
"Cargo.lock": true,
"**/assets/*": true,
"**.svg": true
}
Expand Down
6 changes: 3 additions & 3 deletions crates/sweet/examples/fantoccini.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ use std::time::Duration;

#[tokio::main]
async fn main() -> Result<()> {
// let mut chromedriver =
// Command::new("chromedriver").args(["--port=9515"]).spawn()?;
let mut chromedriver =
Command::new("chromedriver").args(["--port=9515"]).spawn()?;
let client = retry_async(
async || {
let cap = serde_json::from_str(
Expand All @@ -30,6 +30,6 @@ async fn main() -> Result<()> {
assert!(url.as_ref().contains("example.com"));

client.close().await?;
// chromedriver.kill()?;
chromedriver.kill()?;
Ok(())
}

0 comments on commit 3c236b6

Please sign in to comment.