Init env_logger in the editor crate for tests only

This commit is contained in:
Antonio Scandurra 2021-11-12 17:01:57 +01:00
parent b9c459e800
commit fe786f3366
3 changed files with 10 additions and 0 deletions

View file

@ -2,6 +2,12 @@ use gpui::{Entity, ModelHandle};
use smol::channel;
use std::marker::PhantomData;
#[cfg(test)]
#[ctor::ctor]
fn init_logger() {
env_logger::init();
}
pub fn sample_text(rows: usize, cols: usize) -> String {
let mut text = String::new();
for row in 0..rows {