Skip to content

Commit ea7aa46

Browse files
authored
Integration Tests - Add gulp tasks for lsp integration tests (#6188)
* wip * explicitly use workspace path * fix * remove settings * feedback * fix
1 parent b5f8db1 commit ea7aa46

15 files changed

+149
-38
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"folders": [
3+
{
4+
"path": ".."
5+
}
6+
],
7+
"settings": {
8+
"dotnet.server.useOmnisharp": true,
9+
"omnisharp.enableLspDriver": false
10+
}
11+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"folders": [
3+
{
4+
"path": ".."
5+
}
6+
],
7+
"settings": {
8+
"dotnet.server.useOmnisharp": true,
9+
"omnisharp.enableLspDriver": true
10+
}
11+
}

omnisharptest/omnisharpIntegrationTests/testAssets/BasicRazorApp2_1/.vscode/settings.json

Lines changed: 0 additions & 4 deletions
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"folders": [
3+
{
4+
"path": ".."
5+
}
6+
],
7+
"settings": {
8+
"omnisharp.path": "latest",
9+
"omnisharp.enableRoslynAnalyzers": true,
10+
"omnisharp.enableLspDriver": true,
11+
"dotnet.server.useOmnisharp": true
12+
}
13+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"folders": [
3+
{
4+
"path": ".."
5+
}
6+
],
7+
"settings": {
8+
"omnisharp.path": "latest",
9+
"omnisharp.enableRoslynAnalyzers": true,
10+
"omnisharp.enableLspDriver": false,
11+
"dotnet.server.useOmnisharp": true
12+
}
13+
}

omnisharptest/omnisharpIntegrationTests/testAssets/singleCsproj/.vscode/settings.json

Lines changed: 0 additions & 6 deletions
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"folders": [
3+
{
4+
"path": ".."
5+
}
6+
],
7+
"settings": {
8+
"omnisharp.defaultLaunchSolution": "SolutionFilter.slnf",
9+
"omnisharp.path": "latest",
10+
"omnisharp.enableRoslynAnalyzers": true,
11+
"dotnet.server.useOmnisharp": true,
12+
"omnisharp.enableLspDriver": true,
13+
}
14+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"folders": [
3+
{
4+
"path": ".."
5+
}
6+
],
7+
"settings": {
8+
"omnisharp.defaultLaunchSolution": "SolutionFilter.slnf",
9+
"omnisharp.path": "latest",
10+
"omnisharp.enableRoslynAnalyzers": true,
11+
"dotnet.server.useOmnisharp": true,
12+
"omnisharp.enableLspDriver": false
13+
}
14+
}

omnisharptest/omnisharpIntegrationTests/testAssets/slnFilterWithCsproj/.vscode/settings.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

omnisharptest/omnisharpIntegrationTests/testAssets/slnWithCsproj/.vscode/omnisharp_lsp_slnWithCsproj.code-workspace

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
"omnisharp.enableRoslynAnalyzers": true,
1010
"dotnet.server.useOmnisharp": true,
1111
"omnisharp.enableLspDriver": true,
12-
"dotnet.defaultSolution": "b_SecondInOrder_SlnFile.sln",
12+
"dotnet.defaultSolution": "b_SecondInOrder_SlnFile.sln"
1313
}
1414
}

0 commit comments

Comments
 (0)