adding cargo-nextest
Some checks are pending
/ test (push) Waiting to run

This commit is contained in:
Chris Cochrun 2026-02-03 09:23:11 -06:00
parent c6538503f2
commit 06c41d2172
3 changed files with 13 additions and 0 deletions

View file

@ -19,6 +19,7 @@ There is likely some work that still needs to be done here, I believe I am someh
This will be based on each slide having the ability to activate an action (i.e. OBS scene switch, OBS start or stop) when it is active.
This is working but the right click context menu is all the way on the edge of the ui so you can't control all the slides. It also needs a lot of help in making the system more robust and potentially lest reliant on the Presenter struct itself.
* TODO [#B] Develop ui for settings
* TODO [#B] Develop library system for slides that are more than images or video i.e. content

View file

@ -30,6 +30,7 @@
"rustc"
"rustfmt"
])
cargo-nextest
rust-analyzer
vulkan-loader
wayland

View file

@ -1141,6 +1141,17 @@ You saved my soul"
}
}
#[test]
fn test_song_slide_speed() {
let song = test_song();
let slides = song.to_slides();
if let Ok(slides) = slides {
assert!(true, "{:?}", slides);
} else {
assert!(false, "Slides failed");
}
}
#[tokio::test]
async fn test_song_from_db() {
let song = test_song();