-
Notifications
You must be signed in to change notification settings - Fork 680
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Integration Tests - Add gulp tasks for lsp integration tests (#6188)
* wip * explicitly use workspace path * fix * remove settings * feedback * fix
- Loading branch information
Showing
15 changed files
with
149 additions
and
38 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
...rationTests/testAssets/BasicRazorApp2_1/.vscode/omnisharp_BasicRazorApp2_1.code-workspace
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"path": ".." | ||
} | ||
], | ||
"settings": { | ||
"dotnet.server.useOmnisharp": true, | ||
"omnisharp.enableLspDriver": false | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
...onTests/testAssets/BasicRazorApp2_1/.vscode/omnisharp_lsp_BasicRazorApp2_1.code-workspace
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"path": ".." | ||
} | ||
], | ||
"settings": { | ||
"dotnet.server.useOmnisharp": true, | ||
"omnisharp.enableLspDriver": true | ||
} | ||
} |
4 changes: 0 additions & 4 deletions
4
omnisharptest/omnisharpIntegrationTests/testAssets/BasicRazorApp2_1/.vscode/settings.json
This file was deleted.
Oops, something went wrong.
13 changes: 13 additions & 0 deletions
13
...ntegrationTests/testAssets/singleCsproj/.vscode/omnisharp_lsp_singleCsproj.code-workspace
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"path": ".." | ||
} | ||
], | ||
"settings": { | ||
"omnisharp.path": "latest", | ||
"omnisharp.enableRoslynAnalyzers": true, | ||
"omnisharp.enableLspDriver": true, | ||
"dotnet.server.useOmnisharp": true | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
...arpIntegrationTests/testAssets/singleCsproj/.vscode/omnisharp_singleCsproj.code-workspace
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"path": ".." | ||
} | ||
], | ||
"settings": { | ||
"omnisharp.path": "latest", | ||
"omnisharp.enableRoslynAnalyzers": true, | ||
"omnisharp.enableLspDriver": false, | ||
"dotnet.server.useOmnisharp": true | ||
} | ||
} |
6 changes: 0 additions & 6 deletions
6
omnisharptest/omnisharpIntegrationTests/testAssets/singleCsproj/.vscode/settings.json
This file was deleted.
Oops, something went wrong.
14 changes: 14 additions & 0 deletions
14
...s/testAssets/slnFilterWithCsproj/.vscode/omnisharp_lsp_slnFilterWithCsproj.code-workspace
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"path": ".." | ||
} | ||
], | ||
"settings": { | ||
"omnisharp.defaultLaunchSolution": "SolutionFilter.slnf", | ||
"omnisharp.path": "latest", | ||
"omnisharp.enableRoslynAnalyzers": true, | ||
"dotnet.server.useOmnisharp": true, | ||
"omnisharp.enableLspDriver": true, | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
...Tests/testAssets/slnFilterWithCsproj/.vscode/omnisharp_slnFilterWithCsproj.code-workspace
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"path": ".." | ||
} | ||
], | ||
"settings": { | ||
"omnisharp.defaultLaunchSolution": "SolutionFilter.slnf", | ||
"omnisharp.path": "latest", | ||
"omnisharp.enableRoslynAnalyzers": true, | ||
"dotnet.server.useOmnisharp": true, | ||
"omnisharp.enableLspDriver": false | ||
} | ||
} |
6 changes: 0 additions & 6 deletions
6
omnisharptest/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/.vscode/settings.json
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 0 additions & 6 deletions
6
omnisharptest/omnisharpIntegrationTests/testAssets/slnWithCsproj/.vscode/settings.json
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters