mirror of
https://github.com/denoland/deno.git
synced 2025-09-27 12:49:10 +00:00
Use dprint for internal formatting (#6682)
This commit is contained in:
parent
9eca71caa1
commit
cde4dbb351
378 changed files with 3116 additions and 3121 deletions
|
@ -18,7 +18,7 @@ unitTest(
|
|||
assertEquals(current, path);
|
||||
}
|
||||
Deno.chdir(initialdir);
|
||||
}
|
||||
},
|
||||
);
|
||||
|
||||
unitTest({ perms: { read: true, write: true } }, function dirCwdError(): void {
|
||||
|
@ -44,7 +44,7 @@ unitTest({ perms: { read: false } }, function dirCwdPermError(): void {
|
|||
Deno.cwd();
|
||||
},
|
||||
Deno.errors.PermissionDenied,
|
||||
"read access to <CWD>, run again with the --allow-read flag"
|
||||
"read access to <CWD>, run again with the --allow-read flag",
|
||||
);
|
||||
});
|
||||
|
||||
|
@ -55,5 +55,5 @@ unitTest(
|
|||
assertThrows(() => {
|
||||
Deno.chdir(path);
|
||||
}, Deno.errors.NotFound);
|
||||
}
|
||||
},
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue