diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2020-07-14 15:24:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-14 15:24:17 -0400 |
commit | cde4dbb35132848ffece59ef9cfaccff32347124 (patch) | |
tree | cc7830968c6decde704c8cfb83c9185193dc698f /std/node/process_test.ts | |
parent | 9eca71caa1674c31f9cc5d4e86c03f10b59e0a00 (diff) |
Use dprint for internal formatting (#6682)
Diffstat (limited to 'std/node/process_test.ts')
-rw-r--r-- | std/node/process_test.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/std/node/process_test.ts b/std/node/process_test.ts index c4332af33..2674b725f 100644 --- a/std/node/process_test.ts +++ b/std/node/process_test.ts @@ -44,7 +44,7 @@ Deno.test({ process.chdir("non-existent-directory-name"); }, Deno.errors.NotFound, - "file" + "file", // On every OS Deno returns: "No such file" except for Windows, where it's: // "The system cannot find the file specified. (os error 2)" so "file" is // the only common string here. @@ -95,7 +95,7 @@ Deno.test({ process.on("uncaughtException", (_err: Error) => {}); }, Error, - "implemented" + "implemented", ); }, }); @@ -107,7 +107,7 @@ Deno.test({ assert(Array.isArray(argv)); assert( process.argv[0].match(/[^/\\]*deno[^/\\]*$/), - "deno included in the file name of argv[0]" + "deno included in the file name of argv[0]", ); // we cannot test for anything else (we see test runner arguments here) }, |