diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-12-14 13:00:51 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-14 13:00:51 -0500 |
commit | 9e9e8f1e38e82ce85dfb0ebda2c814dce17bfbc4 (patch) | |
tree | b057ebe9464bf95ea7776fe89506c4b78ed03b69 /cli/tests | |
parent | 4a64ca850131a0aa07e8c781e6e194246f94eeb6 (diff) |
fix: upgrade to TS 4.9.4 (#17048)
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/unit/version_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/unit/version_test.ts b/cli/tests/unit/version_test.ts index d9984dbf2..3b371a2bc 100644 --- a/cli/tests/unit/version_test.ts +++ b/cli/tests/unit/version_test.ts @@ -4,5 +4,5 @@ Deno.test(function version() { const pattern = /^\d+\.\d+\.\d+/; assert(pattern.test(Deno.version.deno)); assert(pattern.test(Deno.version.v8)); - assertEquals(Deno.version.typescript, "4.9.3"); + assertEquals(Deno.version.typescript, "4.9.4"); }); |