watchexec/lib/tests/error_handler.rs

32 lines
629 B
Rust
Raw Normal View History

use std::time::Duration;
use tokio::time::sleep;
use watchexec::{
2021-08-22 10:49:24 +02:00
config::{InitConfigBuilder, RuntimeConfig},
Watchexec,
};
#[tokio::main]
async fn main() -> color_eyre::eyre::Result<()> {
tracing_subscriber::fmt::init();
color_eyre::install()?;
let init = InitConfigBuilder::default()
.error_handler(Box::new(|err| async move {
eprintln!("Watchexec Runtime Error: {}", err);
Ok::<(), std::convert::Infallible>(())
}))
.build()?;
2021-08-22 10:49:24 +02:00
let runtime = RuntimeConfig::default();
let wx = Watchexec::new(init, runtime)?;
wx.main();
// TODO: induce an error here
sleep(Duration::from_secs(1)).await;
Ok(())
}