From 27e7bb090e9d771c8f3e4ddba4dd956a4a56855b Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Tue, 18 May 2021 06:45:13 +1000 Subject: refactor: share test harness for lsp between bench and integration (#10659) --- cli/tests/lsp/document_symbol_did_open_notification.json | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 cli/tests/lsp/document_symbol_did_open_notification.json (limited to 'cli/tests/lsp/document_symbol_did_open_notification.json') diff --git a/cli/tests/lsp/document_symbol_did_open_notification.json b/cli/tests/lsp/document_symbol_did_open_notification.json deleted file mode 100644 index 31c37c152..000000000 --- a/cli/tests/lsp/document_symbol_did_open_notification.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "jsonrpc": "2.0", - "method": "textDocument/didOpen", - "params": { - "textDocument": { - "uri": "file:///a/file.ts", - "languageId": "typescript", - "version": 1, - "text": "interface IFoo {\n foo(): boolean;\n}\n\nclass Bar implements IFoo {\n constructor(public x: number) { }\n foo() { return true; }\n /** @deprecated */\n baz() { return false; }\n get value(): number { return 0; }\n set value(newVavlue: number) { return; }\n static staticBar = new Bar(0);\n private static getStaticBar() { return Bar.staticBar; }\n}\n\nenum Values { value1, value2 }\n\nvar bar: IFoo = new Bar(3);" - } - } -} -- cgit v1.2.3