diff options
Diffstat (limited to 'cli/tests/lsp/code_action_request_cache.json')
-rw-r--r-- | cli/tests/lsp/code_action_request_cache.json | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/cli/tests/lsp/code_action_request_cache.json b/cli/tests/lsp/code_action_request_cache.json deleted file mode 100644 index 8e296be32..000000000 --- a/cli/tests/lsp/code_action_request_cache.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "jsonrpc": "2.0", - "id": 2, - "method": "textDocument/codeAction", - "params": { - "textDocument": { - "uri": "file:///a/file.ts" - }, - "range": { - "start": { - "line": 0, - "character": 19 - }, - "end": { - "line": 0, - "character": 49 - } - }, - "context": { - "diagnostics": [ - { - "range": { - "start": { - "line": 0, - "character": 19 - }, - "end": { - "line": 0, - "character": 49 - } - }, - "severity": 1, - "code": "no-cache", - "source": "deno", - "message": "Unable to load the remote module: \"https://deno.land/x/a/mod.ts\".", - "data": { - "specifier": "https://deno.land/x/a/mod.ts" - } - } - ], - "only": [ - "quickfix" - ] - } - } -} |