Skip to content

Commit

Permalink
chore: remove LSP global symbols count tests (#27806)
Browse files Browse the repository at this point in the history
Closes #23102
  • Loading branch information
petamoriken authored Jan 26, 2025
1 parent 769f748 commit b59c21d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/integration/lsp_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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!(
Expand Down Expand Up @@ -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" }));
Expand Down

0 comments on commit b59c21d

Please sign in to comment.