Skip to content

Commit

Permalink
Merge pull request #49 from teamviewer/VSCode-1
Browse files Browse the repository at this point in the history
Update launch.json
  • Loading branch information
ChristianJ-TV authored Oct 4, 2023
2 parents 8e04872 + 15af5ba commit 6e002b2
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
{
// See https://go.microsoft.com/fwlink/?linkid=830387 for the documentation about the launch.json format
// See https://go.microsoft.com/fwlink/?linkid=830387 for the documentation about the tasks.json format
"version": "0.2.0",
"configurations": [
{
"name": "Test (via Pester)",
"name": "Lint (via PSScriptAnalyzer)",
"type": "PowerShell",
"request": "launch",
"script": "Invoke-Pester",
"args": [
"-Path '${workspaceFolder}' -Output Detailed"
]
"script": "Invoke-ScriptAnalyzer -Path '${workspaceFolder}' -Recurse -Settings '${workspaceFolder}/Linters/PSScriptAnalyzer.psd1'",
"createTemporaryIntegratedConsole": true
},
{
"name": "Run (via PowerShell)",
"name": "Test (via Pester)",
"type": "PowerShell",
"request": "launch",
"cwd": "${workspaceRoot}",
"args": []
"script": "Invoke-Pester -Path '${workspaceFolder}'",
"createTemporaryIntegratedConsole": true
}
]
}

0 comments on commit 6e002b2

Please sign in to comment.