Skip to content

Commit

Permalink
debug integration test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
dibarbet committed Oct 30, 2024
1 parent a6e8298 commit 50b668c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ describe(`Code Actions Tests`, () => {

test('Lightbulb displays actions', async () => {
const actions = await getCodeActions(new vscode.Range(0, 0, 0, 12));
console.log(actions.map((a) => a.title).join(', '));
expect(actions.length).toBeGreaterThanOrEqual(3);

// Verify we have unresolved code actions.
Expand All @@ -55,7 +56,7 @@ describe(`Code Actions Tests`, () => {

test('Remove unnecessary usings applied', async () => {
const actions = await getCodeActions(new vscode.Range(0, 0, 0, 12), 10);

console.log(actions.map((a) => a.title).join(', '));
expect(actions[0].title).toBe('Remove unnecessary usings');
expect(actions[0].edit).toBeDefined();

Expand Down

0 comments on commit 50b668c

Please # to comment.