summaryrefslogtreecommitdiff
path: root/tests/unit/version_test.ts
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-03-26 18:52:57 -0400
committerGitHub <noreply@github.com>2024-03-26 18:52:57 -0400
commitac4a5f74b8e56a360e0a0543a6fc45099e13b95a (patch)
tree463796fb830eae41fc039512bb1ce79919195735 /tests/unit/version_test.ts
parent6b95c53e48a2622f4f2b6fdfa6c2c26dc30bbba4 (diff)
feat: TypeScript 5.4 (#23086)
Fork PR: https://github.com/denoland/TypeScript/pull/10 Closes #23080
Diffstat (limited to 'tests/unit/version_test.ts')
-rw-r--r--tests/unit/version_test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/version_test.ts b/tests/unit/version_test.ts
index 4eadb7620..daed9fda6 100644
--- a/tests/unit/version_test.ts
+++ b/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.3.3");
+ assertEquals(Deno.version.typescript, "5.4.3");
});