.vscode/tasks.json
|
{
"version": "2.0.0", "tasks": [ { "label": "Run Pester Tests", "type": "shell", "command": "powershell", "args": [ "-NoProfile", "-ExecutionPolicy", "Bypass", "-File", "${workspaceFolder}\\Tests\\Invoke-Tests.ps1" ], "group": { "kind": "test", "isDefault": true }, "presentation": { "echo": true, "reveal": "always", "focus": false, "panel": "shared", "clear": true }, "problemMatcher": [] }, { "label": "Run Pester Tests (Detailed to Log)", "type": "shell", "command": "powershell", "args": [ "-NoProfile", "-ExecutionPolicy", "Bypass", "-File", "${workspaceFolder}\\Tests\\Invoke-Tests.ps1", "-Full" ], "group": "test", "presentation": { "echo": true, "reveal": "always", "focus": false, "panel": "shared", "clear": true }, "problemMatcher": [] }, { "label": "Run Pester Tests (Open HTML Report)", "type": "shell", "command": "powershell", "args": [ "-NoProfile", "-ExecutionPolicy", "Bypass", "-File", "${workspaceFolder}\\Tests\\Invoke-Tests.ps1", "-OpenReport" ], "group": "test", "presentation": { "echo": true, "reveal": "always", "focus": false, "panel": "shared", "clear": true }, "problemMatcher": [] } ] } |