diff --git a/integration/language_service_plugin/goldens/quickinfo_externalTemplate.json b/integration/language_service_plugin/goldens/quickinfo_externalTemplate.json deleted file mode 100644 index ada1cae7cc..0000000000 --- a/integration/language_service_plugin/goldens/quickinfo_externalTemplate.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "seq": 0, - "type": "response", - "command": "quickinfo", - "request_seq": 4, - "success": true, - "body": { - "kind": "const", - "kindModifiers": "declare", - "start": { - "line": 1, - "offset": 17 - }, - "end": { - "line": 1, - "offset": 21 - }, - "displayString": "const name: never", - "documentation": "", - "tags": [] - } -} \ No newline at end of file diff --git a/integration/language_service_plugin/test.ts b/integration/language_service_plugin/test.ts index 607c17eae2..73a920b476 100644 --- a/integration/language_service_plugin/test.ts +++ b/integration/language_service_plugin/test.ts @@ -117,17 +117,6 @@ describe('Angular Language Service', () => { offset: 28, }); expect(resp2).toMatchGolden('quickinfo.json'); - - client.sendRequest('open', { - file: `${PWD}/project/app/widget.component.html`, - }); - - const resp3 = await client.sendRequest('quickinfo', { - file: `${PWD}/project/app/widget.component.html`, - line: 1, - offset: 19, - }); - expect(resp3).toMatchGolden('quickinfo_externalTemplate.json'); }); it('should perform definition', async () => {