diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-07-04 11:27:04 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-04 15:27:04 +0000 |
commit | a3986b641c892c09b514aab76c04324e75e18f9d (patch) | |
tree | 4e22273bef2d4f204c6e31e9e03b181e20da8936 /cli/tests/unit_node | |
parent | 39872646eba1160958b6edd042be905b7cf4dd0c (diff) |
fix: bump default @types/node version range to 18.16.19 (#19706)
Diffstat (limited to 'cli/tests/unit_node')
-rw-r--r-- | cli/tests/unit_node/_fs/_fs_watch_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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]), |