Skip to content

Commit

Permalink
Merge pull request #6604 from davidwengier/AllowDebugIndividualRazorI…
Browse files Browse the repository at this point in the history
…ntegrationTest
  • Loading branch information
davidwengier authored Oct 27, 2023
2 parents 1b480d9 + 5c27159 commit 1a8a3a9
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,34 @@
],
"preLaunchTask": "buildDev"
},
{
"name": "Launch Current File BasicRazorApp2_1 Integration Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
// Create a temp profile that has no extensions / user settings.
// This allows us to only have the C# extension + the dotnet runtime installer extension dependency.
"--profile-temp",
"${workspaceRoot}/test/razorIntegrationTests/testAssets/BasicRazorApp2_1/.vscode/lsp_tools_host_BasicRazorApp2_1.code-workspace",
"--extensionDevelopmentPath=${workspaceRoot}",
"--extensionTestsPath=${workspaceRoot}/out/test/razorIntegrationTests",
],
"env": {
"CODE_EXTENSIONS_PATH": "${workspaceRoot}",
"TEST_FILE_FILTER": "${file}"
},
"sourceMaps": true,
"outFiles": [
"${workspaceRoot}/dist/*.js",
"${workspaceRoot}/out/test/**/*.js"
],
"resolveSourceMapLocations": [
"${workspaceFolder}/**",
"!**/node_modules/**"
],
"preLaunchTask": "buildDev"
},
{
"name": "Omnisharp: Launch Current File Integration Tests",
"type": "extensionHost",
Expand Down

0 comments on commit 1a8a3a9

Please sign in to comment.