summaryrefslogtreecommitdiff
path: root/cli/tests
diff options
context:
space:
mode:
authorsigmaSd <bedisnbiba@gmail.com>2023-09-05 16:36:35 +0100
committerGitHub <noreply@github.com>2023-09-05 16:36:35 +0100
commitbe1fc754a14683bf640b7bf0ecf6e286d02ee118 (patch)
treee7861eba1de4c0d2bb3afe1cc8c407f8e3b4f668 /cli/tests
parent4a561f12dbae5a49203eb2c08fed71d9d0dfeb99 (diff)
feat(lsp): provide the deno.cache command server-side (#20111)
Co-authored-by: Nayeem Rahman <nayeemrmn99@gmail.com>
Diffstat (limited to 'cli/tests')
-rw-r--r--cli/tests/integration/lsp_tests.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/integration/lsp_tests.rs b/cli/tests/integration/lsp_tests.rs
index 19b968602..c86d30456 100644
--- a/cli/tests/integration/lsp_tests.rs
+++ b/cli/tests/integration/lsp_tests.rs
@@ -4257,7 +4257,7 @@ fn lsp_code_actions_deno_cache() {
"command": {
"title": "",
"command": "deno.cache",
- "arguments": [["https://deno.land/x/a/mod.ts"]]
+ "arguments": [["https://deno.land/x/a/mod.ts"], "file:///a/file.ts"]
}
}])
);
@@ -4342,7 +4342,7 @@ fn lsp_code_actions_deno_cache_npm() {
"command": {
"title": "",
"command": "deno.cache",
- "arguments": [["npm:chalk"]]
+ "arguments": [["npm:chalk"], "file:///a/file.ts"]
}
}])
);