diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2023-09-26 21:57:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-26 21:57:14 +0100 |
commit | cb154d6afa3d260e3b281404155d04806aa2014c (patch) | |
tree | 57a1aa4396dc482ef605cdb8b53ab4b535170057 /cli/tests/integration/npm_tests.rs | |
parent | dcb00bb9b8bf39f0caa6bb87b6b11e1344803bb9 (diff) |
chore(lsp): bump tower-lsp to 0.20.0 (#20693)
Diffstat (limited to 'cli/tests/integration/npm_tests.rs')
-rw-r--r-- | cli/tests/integration/npm_tests.rs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/cli/tests/integration/npm_tests.rs b/cli/tests/integration/npm_tests.rs index 09330a80c..0fd0cdb4b 100644 --- a/cli/tests/integration/npm_tests.rs +++ b/cli/tests/integration/npm_tests.rs @@ -2155,8 +2155,11 @@ fn top_level_install_package_json_explicit_opt_in() { } })); client.write_request( - "deno/cache", - json!({ "referrer": { "uri": file_uri }, "uris": [] }), + "workspace/executeCommand", + json!({ + "command": "deno.cache", + "arguments": [[], file_uri], + }), ); assert!(node_modules_dir.join("@denotest").exists()); |