summaryrefslogtreecommitdiff
path: root/tests/integration/lsp_tests.rs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-03-13 12:21:13 -0400
committerGitHub <noreply@github.com>2024-03-13 16:21:13 +0000
commitb3ca3b2f25931afb350027bde87dc3d4f9a741b0 (patch)
treee8d4f1211310e4998cd21882b96d0a799a83de87 /tests/integration/lsp_tests.rs
parenteccdb0e99acd66cce38fc8535aeab221a8a6fffa (diff)
chore: rough first pass on spec tests (#22877)
Diffstat (limited to 'tests/integration/lsp_tests.rs')
-rw-r--r--tests/integration/lsp_tests.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/integration/lsp_tests.rs b/tests/integration/lsp_tests.rs
index a7193ff59..f1a368413 100644
--- a/tests/integration/lsp_tests.rs
+++ b/tests/integration/lsp_tests.rs
@@ -215,7 +215,7 @@ fn lsp_import_map_remote() {
temp_dir.write(
"deno.json",
json!({
- "importMap": "http://localhost:4545/import_maps/import_map.json",
+ "importMap": "http://localhost:4545/import_maps/import_map_remote.json",
})
.to_string(),
);
@@ -228,7 +228,9 @@ fn lsp_import_map_remote() {
);
let mut client = context.new_lsp_command().build();
client.initialize(|builder| {
- builder.set_import_map("http://localhost:4545/import_maps/import_map.json");
+ builder.set_import_map(
+ "http://localhost:4545/import_maps/import_map_remote.json",
+ );
});
client.write_request(
"workspace/executeCommand",