0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-01 12:16:11 -05:00

chore: remove LSP global symbols count tests (#27806)

Closes #23102
This commit is contained in:
Kenta Moriuchi 2025-01-27 04:03:20 +09:00 committed by GitHub
parent 769f748dd9
commit b59c21d2c2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5762,7 +5762,6 @@ fn lsp_jsr_auto_import_completion() {
json!({ "triggerKind": 1 }),
);
assert!(!list.is_incomplete);
assert_eq!(list.items.len(), 268);
let item = list.items.iter().find(|i| i.label == "add").unwrap();
assert_eq!(&item.label, "add");
assert_eq!(
@ -5842,7 +5841,6 @@ fn lsp_jsr_auto_import_completion_import_map() {
json!({ "triggerKind": 1 }),
);
assert!(!list.is_incomplete);
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" }));