mirror of
https://github.com/denoland/deno.git
synced 2025-01-03 12:58:54 -05:00
chore: make LSP test less prone to changes (#20003)
This test was getting changed often, I modified it a bit so it's less sensitive to changes in declaration files.
This commit is contained in:
parent
98403691d1
commit
a05e890d56
1 changed files with 7 additions and 4 deletions
|
@ -5108,9 +5108,12 @@ fn lsp_completions_auto_import() {
|
|||
);
|
||||
assert!(!list.is_incomplete);
|
||||
let item = list.items.iter().find(|item| item.label == "foo");
|
||||
if item.is_none() {
|
||||
let Some(item) = item else {
|
||||
panic!("completions items missing 'foo' symbol");
|
||||
}
|
||||
};
|
||||
let mut item_value = serde_json::to_value(item).unwrap();
|
||||
item_value["data"]["tsc"]["data"]["exportMapKey"] =
|
||||
serde_json::Value::String("".to_string());
|
||||
|
||||
let req = json!({
|
||||
"label": "foo",
|
||||
|
@ -5130,7 +5133,7 @@ fn lsp_completions_auto_import() {
|
|||
"source": "./b.ts",
|
||||
"data": {
|
||||
"exportName": "foo",
|
||||
"exportMapKey": "foo|6811|file:///a/b",
|
||||
"exportMapKey": "",
|
||||
"moduleSpecifier": "./b.ts",
|
||||
"fileName": "file:///a/b.ts"
|
||||
},
|
||||
|
@ -5138,7 +5141,7 @@ fn lsp_completions_auto_import() {
|
|||
}
|
||||
}
|
||||
});
|
||||
assert_eq!(serde_json::to_value(item.unwrap()).unwrap(), req);
|
||||
assert_eq!(item_value, req);
|
||||
|
||||
let res = client.write_request("completionItem/resolve", req);
|
||||
assert_eq!(
|
||||
|
|
Loading…
Reference in a new issue