Make tests less noisy (#12463)
When running the tests for linux, I found a lot of benign errors getting logged. This PR cuts down some of the noise from unnecessary workspace serialization and SVG renders Release Notes: - N/A
This commit is contained in:
parent
bdf627ce07
commit
5a149b970c
36 changed files with 216 additions and 172 deletions
|
@ -3043,8 +3043,14 @@ mod tests {
|
|||
fn test_bundled_settings_and_themes(cx: &mut AppContext) {
|
||||
cx.text_system()
|
||||
.add_fonts(vec![
|
||||
Assets.load("fonts/zed-sans/zed-sans-extended.ttf").unwrap(),
|
||||
Assets.load("fonts/zed-mono/zed-mono-extended.ttf").unwrap(),
|
||||
Assets
|
||||
.load("fonts/zed-sans/zed-sans-extended.ttf")
|
||||
.unwrap()
|
||||
.unwrap(),
|
||||
Assets
|
||||
.load("fonts/zed-mono/zed-mono-extended.ttf")
|
||||
.unwrap()
|
||||
.unwrap(),
|
||||
])
|
||||
.unwrap();
|
||||
let themes = ThemeRegistry::default();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue