feat: add audio visualizer #3

Merged
Stevan merged 13 commits from stevanfreeborn/feat/add-audio-visualizer into main 2026-07-28 02:36:05 +00:00
Showing only changes of commit 01765bf115 - Show all commits
+9
View File
@@ -831,4 +831,13 @@ mod tests {
let result = result.with_notifications(true); let result = result.with_notifications(true);
assert!(result.enable_notifications); assert!(result.enable_notifications);
} }
#[test]
fn termato_visualizer_when_called_it_should_verify_opt_in_behavior() {
let result = Termato::new(25, 5);
assert!(!result.enable_visualizer);
let result = result.with_visualizer(true);
assert!(result.enable_visualizer);
}
} }