fix(workspace): clear strict lint and test debt
This commit is contained in:
@@ -75,7 +75,7 @@ async fn browser_proves_phone_first_workout_flow() -> WebDriverResult<()> {
|
||||
wait_for_body_text(&driver, "Undid: started Goblet squat set 2").await?;
|
||||
|
||||
let host_panel = driver.find(By::Css(".host-proof")).await?;
|
||||
assert!(!host_panel.attr("open").await?.is_some());
|
||||
assert!(host_panel.attr("open").await?.is_none());
|
||||
|
||||
driver.set_window_rect(0, 0, 1024, 900).await?;
|
||||
assert_viewport(&driver, "wide", false).await?;
|
||||
|
||||
@@ -18,7 +18,7 @@ impl Server {
|
||||
drop(listener);
|
||||
|
||||
let bin = env!("CARGO_BIN_EXE_hemx-workout-example");
|
||||
let child = Command::new(bin)
|
||||
let mut child = Command::new(bin)
|
||||
.env("HEMX_WORKOUT_ADDR", &addr)
|
||||
.stdout(Stdio::null())
|
||||
.stderr(Stdio::null())
|
||||
@@ -32,6 +32,8 @@ impl Server {
|
||||
}
|
||||
std::thread::sleep(Duration::from_millis(25));
|
||||
}
|
||||
let _ = child.kill();
|
||||
let _ = child.wait();
|
||||
panic!("hemx-workout-example did not listen on {addr}");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user