mirror of
https://github.com/JakeStanger/ironbar.git
synced 2024-11-22 14:04:20 +03:00
test(dynamic label): do not run if cannot initialise gtk
This commit is contained in:
parent
ec69649a04
commit
907a565f3d
@ -118,8 +118,10 @@ mod tests {
|
||||
|
||||
#[tokio::test]
|
||||
async fn test() {
|
||||
gtk::init().unwrap();
|
||||
let label = gtk::Label::new(None);
|
||||
DynamicLabel::new(label, "Uptime: {{1000:uptime -p | cut -d ' ' -f2-}}");
|
||||
// TODO: see if we can run gtk tests in ci
|
||||
if gtk::init().is_ok() {
|
||||
let label = gtk::Label::new(None);
|
||||
DynamicLabel::new(label, "Uptime: {{1000:uptime -p | cut -d ' ' -f2-}}");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user