diff options
Diffstat (limited to 'cli/tests/lsp/code_action_params_refactor.json')
-rw-r--r-- | cli/tests/lsp/code_action_params_refactor.json | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/cli/tests/lsp/code_action_params_refactor.json b/cli/tests/lsp/code_action_params_refactor.json new file mode 100644 index 000000000..9fe359498 --- /dev/null +++ b/cli/tests/lsp/code_action_params_refactor.json @@ -0,0 +1,21 @@ +{ + "textDocument": { + "uri": "file:///a/file.ts" + }, + "range": { + "start": { + "line": 0, + "character": 7 + }, + "end": { + "line": 0, + "character": 33 + } + }, + "context": { + "diagnostics": [], + "only": [ + "refactor" + ] + } +} |