Skip to content

Commit 0dc8b5a

Browse files
committed
debug tests
1 parent e426224 commit 0dc8b5a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ describe(`Code Actions Tests`, () => {
3535
test('Lightbulb displays actions', async () => {
3636
const actions = await getCodeActions(new vscode.Range(0, 0, 0, 12));
3737
expect(actions.length).toBeGreaterThanOrEqual(3);
38-
38+
console.log(actions.length);
39+
console.log(actions.map((a) => a.title).join(', '));
3940
// Verify we have unresolved code actions.
4041
expect(actions[0].title).toBe('Remove unnecessary usings');
4142
expect(actions[0].kind).toStrictEqual(vscode.CodeActionKind.QuickFix);
@@ -55,7 +56,8 @@ describe(`Code Actions Tests`, () => {
5556

5657
test('Remove unnecessary usings applied', async () => {
5758
const actions = await getCodeActions(new vscode.Range(0, 0, 0, 12), 10);
58-
59+
console.log(actions.length);
60+
console.log(actions.map((a) => a.title).join(', '));
5961
expect(actions[0].title).toBe('Remove unnecessary usings');
6062
expect(actions[0].edit).toBeDefined();
6163

0 commit comments

Comments
 (0)