We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f94c33 commit db8b58aCopy full SHA for db8b58a
crates/vite_task_bin/tests/e2e_snapshots/main.rs
@@ -594,7 +594,7 @@ fn main() {
594
let filter = std::env::args().nth(1);
595
596
let tmp_dir = tempfile::tempdir().unwrap();
597
- let tmp_dir_path = AbsolutePathBuf::new(tmp_dir.path().to_path_buf()).unwrap();
+ let tmp_dir_path = AbsolutePathBuf::new(tmp_dir.path().canonicalize().unwrap()).unwrap();
598
599
let fixtures_dir = runtime_manifest_dir().join("tests").join("e2e_snapshots").join("fixtures");
600
let mut fixture_paths = std::fs::read_dir(fixtures_dir)
0 commit comments