-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
VSCODE-247: Replace code lenses with code actions #318
VSCODE-247: Replace code lenses with code actions #318
Conversation
4d38634
to
14ad445
Compare
14ad445
to
b7fdfc9
Compare
@@ -18,5 +18,6 @@ | |||
"other": true, | |||
"comments": false, | |||
"strings": true | |||
} | |||
}, | |||
"security.workspace.trust.enabled": false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is an unrelated change, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Vscode 1.57 introduced a trusted authors confirmation modal, that interrupts tests, so this line disables this check during tests running.
expect(codeActions).to.be.undefined; | ||
}); | ||
|
||
test('expected provideCodeActions to return a run selected playground blocks action', () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would it be possible to add a test that actually runs the selected code? As far as I can tell, there wasn’t any before, but it might be a nice thing to have here
Description
Checklist
Motivation and Context
Types of changes