fix: hopefully fixed the background task progress situation

This commit is contained in:
2026-07-23 22:48:53 +02:00
parent ea90167a5a
commit 87318c8b22
16 changed files with 225 additions and 42 deletions

View File

@@ -11217,6 +11217,13 @@ mod tests {
.collect::<Vec<_>>(),
vec![Running, Running, Running, Pending, Pending]
);
assert!(snapshots[..3].iter().all(|task| {
task.progress.is_some()
&& task
.message
.as_deref()
.is_some_and(|message| message.contains("0/"))
}));
}
#[test]