diff options
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/integration/lsp_tests.rs | 2 | ||||
-rw-r--r-- | cli/tests/testdata/run/check_js_points_to_ts/test.js.out | 2 | ||||
-rw-r--r-- | cli/tests/unit/version_test.ts | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/cli/tests/integration/lsp_tests.rs b/cli/tests/integration/lsp_tests.rs index b4339679f..9135698b2 100644 --- a/cli/tests/integration/lsp_tests.rs +++ b/cli/tests/integration/lsp_tests.rs @@ -4788,7 +4788,7 @@ fn lsp_completions_auto_import() { "source": "./b.ts", "data": { "exportName": "foo", - "exportMapKey": "foo|6893|file:///a/b", + "exportMapKey": "foo|6768|file:///a/b", "moduleSpecifier": "./b.ts", "fileName": "file:///a/b.ts" }, diff --git a/cli/tests/testdata/run/check_js_points_to_ts/test.js.out b/cli/tests/testdata/run/check_js_points_to_ts/test.js.out index c052a7c3d..67cda9a65 100644 --- a/cli/tests/testdata/run/check_js_points_to_ts/test.js.out +++ b/cli/tests/testdata/run/check_js_points_to_ts/test.js.out @@ -1,4 +1,4 @@ error: TS2322 [ERROR]: Type 'number' is not assignable to type 'string'. return 42; - ~~~~~~~~~~ + ~~~~~~ at [WILDCARD] diff --git a/cli/tests/unit/version_test.ts b/cli/tests/unit/version_test.ts index 222aeeb85..d5fa9ad66 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.4"); + assertEquals(Deno.version.typescript, "5.1.6"); }); |