Skip to content

Commit 662528a

Browse files
committed
add test completion message
1 parent 3a698dd commit 662528a

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

  • crates
    • vite_task_bin/tests/e2e_snapshots
    • vite_task_plan/tests/plan_snapshots

crates/vite_task_bin/tests/e2e_snapshots/main.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -488,4 +488,5 @@ 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.");
491492
}

crates/vite_task_plan/tests/plan_snapshots/main.rs

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -316,10 +316,9 @@ fn main() {
316316

317317
let tests_dir = std::env::current_dir().unwrap().join("tests");
318318

319-
insta::glob!(tests_dir, "plan_snapshots/fixtures/*", |case_path| run_case(
320-
&tokio_runtime,
321-
&tmp_dir_path,
322-
case_path,
323-
filter.as_deref()
324-
));
319+
insta::glob!(tests_dir, "plan_snapshots/fixtures/*", |case_path| {
320+
run_case(&tokio_runtime, &tmp_dir_path, case_path, filter.as_deref())
321+
});
322+
323+
println!("All cases passed.");
325324
}

0 commit comments

Comments
 (0)