-
Notifications
You must be signed in to change notification settings - Fork 676
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
Add support for passing a runsettings path to the server #6265
Conversation
@@ -91,8 +91,8 @@ suite(`DotnetTest: ${testAssetWorkspace.description}`, function () { | |||
const endingPath = 'settings\\TestSettings.runsettings'.replace('\\', path.sep); | |||
const relativeRunSettingPath = `.\\${endingPath}`.replace('\\', path.sep); | |||
|
|||
const omnisharpConfig = vscode.workspace.getConfiguration('omnisharp'); | |||
await omnisharpConfig.update('testRunSettings', relativeRunSettingPath); |
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.
Is it possible to have one integration test to cover the test run?
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.
I'll add one in a followup to cover runsettings - want to make sure this one gets in for the snap
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.
One test sugguestion.
Resolves #5719 as the final (known) issue.
Server side PR - dotnet/roslyn#69792
Draft until the server side merges and I can add integration test support here.