diff options
Diffstat (limited to 'cli/tests/permission_test.ts')
-rw-r--r-- | cli/tests/permission_test.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cli/tests/permission_test.ts b/cli/tests/permission_test.ts index 763e429b6..11b95cf3a 100644 --- a/cli/tests/permission_test.ts +++ b/cli/tests/permission_test.ts @@ -3,8 +3,9 @@ const { args, listen, env, exit, makeTempDirSync, readFileSync, run } = Deno; const name = args[0]; const test: { [key: string]: Function } = { - async readRequired(): Promise<void> { + readRequired(): Promise<void> { readFileSync("README.md"); + return Promise.resolve(); }, writeRequired(): void { makeTempDirSync(); |