From af2d992ecd2b9320072164b6ee295c31a3194406 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Sat, 14 Sep 2024 11:58:47 +0100 Subject: feat: TypeScript 5.6 and `npm:@types/node@22` (#25614) --- tests/integration/check_tests.rs | 5 ----- tests/integration/lsp_tests.rs | 4 ++-- 2 files changed, 2 insertions(+), 7 deletions(-) (limited to 'tests/integration') diff --git a/tests/integration/check_tests.rs b/tests/integration/check_tests.rs index f5af5803c..d3111727c 100644 --- a/tests/integration/check_tests.rs +++ b/tests/integration/check_tests.rs @@ -52,11 +52,6 @@ itest!(check_npm_install_diagnostics { exit_code: 1, }); -itest!(check_export_equals_declaration_file { - args: "check --quiet check/export_equals_declaration_file/main.ts", - exit_code: 0, -}); - itest!(check_static_response_json { args: "check --quiet check/response_json.ts", exit_code: 0, diff --git a/tests/integration/lsp_tests.rs b/tests/integration/lsp_tests.rs index cfd0da840..b6cc71ec6 100644 --- a/tests/integration/lsp_tests.rs +++ b/tests/integration/lsp_tests.rs @@ -5380,7 +5380,7 @@ fn lsp_jsr_auto_import_completion() { json!({ "triggerKind": 1 }), ); assert!(!list.is_incomplete); - assert_eq!(list.items.len(), 267); + assert_eq!(list.items.len(), 268); let item = list.items.iter().find(|i| i.label == "add").unwrap(); assert_eq!(&item.label, "add"); assert_eq!( @@ -5460,7 +5460,7 @@ fn lsp_jsr_auto_import_completion_import_map() { json!({ "triggerKind": 1 }), ); assert!(!list.is_incomplete); - assert_eq!(list.items.len(), 267); + assert_eq!(list.items.len(), 268); let item = list.items.iter().find(|i| i.label == "add").unwrap(); assert_eq!(&item.label, "add"); assert_eq!(json!(&item.label_details), json!({ "description": "add" })); -- cgit v1.2.3