diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2020-04-16 06:40:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-16 01:40:30 -0400 |
commit | 5ac728a5f1af575d011c2143f5c9273b0fb4c5bb (patch) | |
tree | dfba0fdb3ba17989fd6c3af89ce17a0a71a4df0c /cli/tests | |
parent | 6441852a1d5eef0d05ed172a00bef58ad5988842 (diff) |
refactor(cli/js/ops/fs): Improve readdir() and FileInfo interfaces (#4763)
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/016_double_await.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/016_double_await.ts b/cli/tests/016_double_await.ts index 9b4801567..0f31b3a80 100644 --- a/cli/tests/016_double_await.ts +++ b/cli/tests/016_double_await.ts @@ -3,6 +3,6 @@ (async (): Promise<void> => { const currDirInfo = await Deno.stat("."); const parentDirInfo = await Deno.stat(".."); - console.log(currDirInfo.isDirectory()); - console.log(parentDirInfo.isFile()); + console.log(currDirInfo.isDirectory); + console.log(parentDirInfo.isFile); })(); |