diff options
author | Maximilien Mellen <maxmellen0@gmail.com> | 2020-02-19 21:36:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-19 15:36:18 -0500 |
commit | 90125566bbaed8b5c6e55ca8dbc432e3433fb73c (patch) | |
tree | bf798a408b26264641260395ce8cfc9d4bb37637 /std/fs/exists_test.ts | |
parent | 852823fa505d75d61e70e1330bbf366aa248e650 (diff) |
Enable TS strict mode by default (#3899)
Fixes #3324
Co-authored-by: Kitson Kelly <me@kitsonkelly.com>
Diffstat (limited to 'std/fs/exists_test.ts')
-rw-r--r-- | std/fs/exists_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/fs/exists_test.ts b/std/fs/exists_test.ts index 06b908b9d..204799447 100644 --- a/std/fs/exists_test.ts +++ b/std/fs/exists_test.ts @@ -131,7 +131,7 @@ Deno.test(async function existsPermission(): Promise<void> { args: args }); - const output = await Deno.readAll(stdout); + const output = await Deno.readAll(stdout!); assertStrContains(new TextDecoder().decode(output), s.output); } |