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 97a4be1 commit 37e96d3Copy full SHA for 37e96d3
test/lsptoolshost/integrationTests/codeactions.integration.test.ts
@@ -320,6 +320,13 @@ async function getCodeActions(
320
/** kind **/ undefined,
321
resolveCount
322
);
323
+
324
+ const moreAction = codeActions.find((a) => a.title === 'More...');
325
+ if (moreAction) {
326
+ console.log('More actions available');
327
+ console.log(JSON.stringify(moreAction));
328
+ }
329
330
return codeActions;
331
}
332
0 commit comments