style: Applied uniform formatting across all new UI test files

This commit is contained in:
2025-12-15 20:18:28 -07:00
parent aadd6c8abf
commit c072c57bbb
23 changed files with 337 additions and 140 deletions
@@ -37,16 +37,17 @@ mod tests {
}
mod snapshot_tests {
use rstest::rstest;
use crate::models::stateful_table::StatefulTable;
use super::*;
use crate::models::stateful_table::StatefulTable;
use rstest::rstest;
#[rstest]
fn test_collection_details_ui_renders_collection_details(
#[values(
ActiveRadarrBlock::CollectionDetails,
ActiveRadarrBlock::ViewMovieOverview
)] active_radarr_block: ActiveRadarrBlock
ActiveRadarrBlock::CollectionDetails,
ActiveRadarrBlock::ViewMovieOverview
)]
active_radarr_block: ActiveRadarrBlock,
) {
let mut app = App::test_default_fully_populated();
app.push_navigation_stack(active_radarr_block.into());
@@ -71,4 +72,4 @@ mod tests {
insta::assert_snapshot!(output);
}
}
}
}