File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
vite_task_bin/tests/e2e_snapshots
vite_task_plan/tests/plan_snapshots Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -488,5 +488,8 @@ fn main() {
488488 for case_path in & fixture_paths {
489489 run_case ( & tmp_dir_path, case_path, filter. as_deref ( ) ) ;
490490 }
491- println ! ( "All cases passed." ) ;
491+ #[ expect( clippy:: print_stdout, reason = "test summary" ) ]
492+ {
493+ println ! ( "All cases passed." ) ;
494+ }
492495}
Original file line number Diff line number Diff line change @@ -317,8 +317,11 @@ fn main() {
317317 let tests_dir = std:: env:: current_dir ( ) . unwrap ( ) . join ( "tests" ) ;
318318
319319 insta:: glob!( tests_dir, "plan_snapshots/fixtures/*" , |case_path| {
320- run_case( & tokio_runtime, & tmp_dir_path, case_path, filter. as_deref( ) )
320+ run_case( & tokio_runtime, & tmp_dir_path, case_path, filter. as_deref( ) ) ;
321321 } ) ;
322322
323- println ! ( "All cases passed." ) ;
323+ #[ expect( clippy:: print_stdout, reason = "test summary" ) ]
324+ {
325+ println ! ( "All cases passed." ) ;
326+ }
324327}
You can’t perform that action at this time.
0 commit comments