From 90125566bbaed8b5c6e55ca8dbc432e3433fb73c Mon Sep 17 00:00:00 2001 From: Maximilien Mellen Date: Wed, 19 Feb 2020 21:36:18 +0100 Subject: Enable TS strict mode by default (#3899) Fixes #3324 Co-authored-by: Kitson Kelly --- std/fs/empty_dir_test.ts | 3 +++ 1 file changed, 3 insertions(+) (limited to 'std/fs/empty_dir_test.ts') diff --git a/std/fs/empty_dir_test.ts b/std/fs/empty_dir_test.ts index b27ebd033..928ba80e6 100644 --- a/std/fs/empty_dir_test.ts +++ b/std/fs/empty_dir_test.ts @@ -1,5 +1,6 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { + assert, assertEquals, assertStrContains, assertThrows, @@ -225,6 +226,8 @@ Deno.test(async function emptyDirPermission(): Promise { args: args }); + assert(stdout); + const output = await Deno.readAll(stdout); assertStrContains(new TextDecoder().decode(output), s.output); -- cgit v1.2.3