Skip to content

Commit 149fe78

Browse files
committed
more
1 parent 440c4c8 commit 149fe78

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/lsptoolshost/integrationTests/codeactions.integration.test.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ describe(`Code Actions Tests`, () => {
3333
});
3434

3535
test('Lightbulb displays actions', async () => {
36+
console.log('LIGHTBULB TEST');
3637
const actions = await getCodeActions(new vscode.Range(0, 0, 0, 12));
3738
expect(actions.length).toBeGreaterThanOrEqual(3);
3839
console.log(actions.length);
@@ -321,10 +322,12 @@ async function getCodeActions(
321322
resolveCount
322323
);
323324

325+
console.log(JSON.stringify(codeActions, null, 4));
326+
324327
const moreAction = codeActions.find((a) => a.title === 'More...');
325328
if (moreAction) {
326329
console.log('More actions available');
327-
console.log(JSON.stringify(moreAction));
330+
console.log(JSON.stringify(moreAction, null, 4));
328331
}
329332

330333
return codeActions;

0 commit comments

Comments
 (0)