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/fs/exists_test.ts | |
parent | 9eca71caa1674c31f9cc5d4e86c03f10b59e0a00 (diff) |
Use dprint for internal formatting (#6682)
Diffstat (limited to 'std/fs/exists_test.ts')
-rw-r--r-- | std/fs/exists_test.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/std/fs/exists_test.ts b/std/fs/exists_test.ts index 8b584d861..3c280f4c4 100644 --- a/std/fs/exists_test.ts +++ b/std/fs/exists_test.ts @@ -8,7 +8,7 @@ const testdataDir = path.resolve("fs", "testdata"); Deno.test("[fs] existsFile", async function (): Promise<void> { assertEquals( await exists(path.join(testdataDir, "not_exist_file.ts")), - false + false, ); assertEquals(await existsSync(path.join(testdataDir, "0.ts")), true); }); @@ -21,7 +21,7 @@ Deno.test("[fs] existsFileSync", function (): void { Deno.test("[fs] existsDirectory", async function (): Promise<void> { assertEquals( await exists(path.join(testdataDir, "not_exist_directory")), - false + false, ); assertEquals(existsSync(testdataDir), true); }); @@ -29,7 +29,7 @@ Deno.test("[fs] existsDirectory", async function (): Promise<void> { Deno.test("[fs] existsDirectorySync", function (): void { assertEquals( existsSync(path.join(testdataDir, "not_exist_directory")), - false + false, ); assertEquals(existsSync(testdataDir), true); }); |