summaryrefslogtreecommitdiff
path: root/cli/tests
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-09-09 14:03:21 -0500
committerGitHub <noreply@github.com>2023-09-09 15:03:21 -0400
commitc228adc27d5b605286d3a9ca924e657308aebb74 (patch)
treefdc0e814bdaeceb231565ee8e0324c7447c39212 /cli/tests
parentf75a17521df053218c0c2b5fb93c5354f9c8f274 (diff)
feat: TypeScript 5.2 (#20425)
Without `using` declarations or decorator metadata (waiting for that in v8).
Diffstat (limited to 'cli/tests')
-rw-r--r--cli/tests/integration/lsp_tests.rs4
-rw-r--r--cli/tests/unit/version_test.ts2
2 files changed, 3 insertions, 3 deletions
diff --git a/cli/tests/integration/lsp_tests.rs b/cli/tests/integration/lsp_tests.rs
index 2dea05015..263e66da5 100644
--- a/cli/tests/integration/lsp_tests.rs
+++ b/cli/tests/integration/lsp_tests.rs
@@ -7960,11 +7960,11 @@ fn lsp_workspace_symbol() {
"uri": "deno:/asset/lib.decorators.d.ts",
"range": {
"start": {
- "line": 331,
+ "line": 346,
"character": 0,
},
"end": {
- "line": 371,
+ "line": 388,
"character": 1,
},
},
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");
});