diff options
Diffstat (limited to 'tests/integration')
-rw-r--r-- | tests/integration/check_tests.rs | 5 | ||||
-rw-r--r-- | tests/integration/lsp_tests.rs | 4 |
2 files changed, 2 insertions, 7 deletions
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" })); |