From a3986b641c892c09b514aab76c04324e75e18f9d Mon Sep 17 00:00:00 2001 From: David Sherret Date: Tue, 4 Jul 2023 11:27:04 -0400 Subject: fix: bump default @types/node version range to 18.16.19 (#19706) --- cli/tests/unit_node/_fs/_fs_watch_test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli/tests/unit_node') diff --git a/cli/tests/unit_node/_fs/_fs_watch_test.ts b/cli/tests/unit_node/_fs/_fs_watch_test.ts index 2316b2db3..26b0da8b9 100644 --- a/cli/tests/unit_node/_fs/_fs_watch_test.ts +++ b/cli/tests/unit_node/_fs/_fs_watch_test.ts @@ -12,7 +12,7 @@ Deno.test({ name: "watching a file", async fn() { const file = Deno.makeTempFileSync(); - const result: Array<[string, string]> = []; + const result: Array<[string, string | null]> = []; const watcher = watch( file, (eventType, filename) => result.push([eventType, filename]), -- cgit v1.2.3