We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33cb326 commit d5f7933Copy full SHA for d5f7933
editor/VSCode/tasks.json
@@ -29,14 +29,17 @@
29
// Associate with test task runner
30
"tasks": [
31
{
32
- "taskName": "Test",
33
- "suppressTaskName": true,
34
- "isTestCommand": true,
35
- "args": [
+ "label": "Run Pester Test",
+ "group": {
+ "kind": "test",
+ "isDefault": true
36
+ },
37
+ "type": "shell",
38
+ "command":[
39
"Write-Host 'Invoking Pester...'; $ProgressPreference = 'SilentlyContinue'; Invoke-Pester -Script Tests -PesterOption @{IncludeVSCodeMarker=$true};",
40
"Invoke-Command { Write-Host 'Completed Test task in task runner.' }"
41
],
42
"problemMatcher": "$pester"
43
}
44
]
-}
45
+}
0 commit comments