( completions: ts.CompletionInfo | undefined, kind: ts.ScriptElementKind | DisplayInfoKind, names: string[], )
| 2345 | } |
| 2346 | |
| 2347 | function expectDoesNotContain( |
| 2348 | completions: ts.CompletionInfo | undefined, |
| 2349 | kind: ts.ScriptElementKind | DisplayInfoKind, |
| 2350 | names: string[], |
| 2351 | ) { |
| 2352 | expect(completions).toBeDefined(); |
| 2353 | for (const name of names) { |
| 2354 | expect(completions!.entries).not.toContain(jasmine.objectContaining({name, kind} as any)); |
| 2355 | } |
| 2356 | } |
| 2357 | |
| 2358 | function expectReplacementText( |
| 2359 | completions: ts.CompletionInfo | undefined, |
no outgoing calls
no test coverage detected
searching dependent graphs…