Silence error logs in zed tests (#13069)

This PR silences the remaining error logs in the `zed` crate tests by
initializing `env_logger` in test mode.

This means that the logs will no longer be shown unless `--nocapture` is
passed to `cargo test`.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-06-14 16:30:15 -04:00 committed by GitHub
parent ff8486e67f
commit ea69846281
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3121,7 +3121,7 @@ mod tests {
fn init_test(cx: &mut TestAppContext) -> Arc<AppState> {
cx.update(|cx| {
env_logger::try_init().ok();
env_logger::builder().is_test(true).try_init().ok();
let mut app_state = AppState::test(cx);