diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-05-11 10:12:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-11 14:12:58 +0000 |
commit | b8495e0377ccd328a75762e349e4ad2f060b2a25 (patch) | |
tree | 2e77dc900be7036afbe6f1fceb8d2e0f2d566419 /cli/tests/unit/version_test.ts | |
parent | ffb0318e4a2427abd0ab9c77ab48ef57357b0dc0 (diff) |
fix(cli): upgrade to Typescript 5.0.4 (#19090)
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 f129de6b2..222aeeb85 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.0.3"); + assertEquals(Deno.version.typescript, "5.0.4"); }); |