1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

chore(test): report correct cwd when running tests via itest macro (#17132)

This commit is contained in:
Kamil Ogórek 2022-12-20 02:34:12 +01:00 committed by GitHub
parent 199144daf0
commit 2ac575abfb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1930,7 +1930,7 @@ impl<'a> CheckOutputIntegrationTest<'a> {
testdata_dir.as_path()
};
println!("deno_exe args {}", args.join(" "));
println!("deno_exe cwd {:?}", &testdata_dir);
println!("deno_exe cwd {:?}", &cwd);
command.args(args.iter());
if self.env_clear {
command.env_clear();