We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97da874 commit 90cd843Copy full SHA for 90cd843
integration/lsp/test_utils.ts
@@ -34,6 +34,9 @@ export function createConnection(serverOptions: ServerOptions): MessageConnectio
34
if (serverOptions.includeAutomaticOptionalChainCompletions) {
35
argv.push('--includeAutomaticOptionalChainCompletions');
36
}
37
+ if (serverOptions.includeCompletionsWithSnippetText) {
38
+ argv.push('--includeCompletionsWithSnippetText');
39
+ }
40
const server = fork(SERVER_PATH, argv, {
41
cwd: PROJECT_PATH,
42
// uncomment to debug server process
0 commit comments