Skip to content

Commit

Permalink
Try to debug CI
Browse files Browse the repository at this point in the history
  • Loading branch information
hecrj committed Dec 17, 2024
1 parent 326c585 commit c4cded5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/todos/snapshots/creates_a_new_task-linux.sha256
Original file line number Diff line number Diff line change
@@ -1 +1 @@
e0b1f2e0c0af6324eb45fde8e82384d16acc2a80a9e157bdf3f42ac6548181cf
a7c2ac4b57f84416812e2134e48fe34db55a757d9176beedf5854a2f69532e32
2 changes: 2 additions & 0 deletions test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ workspace = true

[dependencies]
iced_runtime.workspace = true

iced_renderer.workspace = true
iced_renderer.features = ["fira-sans"]

png.workspace = true
sha2.workspace = true
12 changes: 10 additions & 2 deletions test/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ use crate::core::theme;
use crate::core::time;
use crate::core::widget;
use crate::core::window;
use crate::core::{Element, Event, Point, Rectangle, Settings, Size, SmolStr};
use crate::core::{
Element, Event, Font, Point, Rectangle, Settings, Size, SmolStr,
};
use crate::runtime::user_interface;
use crate::runtime::UserInterface;

Expand Down Expand Up @@ -88,12 +90,17 @@ where
) -> Self {
let size = size.into();

let default_font = match settings.default_font {
Font::DEFAULT => Font::with_name("Fira Sans"),
_ => settings.default_font,
};

for font in settings.fonts {
load_font(font).expect("Font must be valid");
}

let mut renderer =
Renderer::new(settings.default_font, settings.default_text_size);
Renderer::new(default_font, settings.default_text_size);

let raw = UserInterface::build(
element,
Expand Down Expand Up @@ -409,6 +416,7 @@ impl Snapshot {

if path.exists() {
let saved_hash = fs::read_to_string(&path)?;
dbg!(&path, &hash, &saved_hash);

Ok(hash == saved_hash)
} else {
Expand Down

0 comments on commit c4cded5

Please sign in to comment.