diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-09-09 14:03:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-09 15:03:21 -0400 |
commit | c228adc27d5b605286d3a9ca924e657308aebb74 (patch) | |
tree | fdc0e814bdaeceb231565ee8e0324c7447c39212 /cli/tests/unit/version_test.ts | |
parent | f75a17521df053218c0c2b5fb93c5354f9c8f274 (diff) |
feat: TypeScript 5.2 (#20425)
Without `using` declarations or decorator metadata (waiting for that in
v8).
Diffstat (limited to 'cli/tests/unit/version_test.ts')
-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 d5fa9ad66..86e7d0f86 100644 --- a/cli/tests/unit/version_test.ts +++ b/cli/tests/unit/version_test.ts @@ -6,5 +6,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, "5.1.6"); + assertEquals(Deno.version.typescript, "5.2.2"); }); |