Skip to content

Commit d5f7933

Browse files
authored
Update to match new schema
1 parent 33cb326 commit d5f7933

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

editor/VSCode/tasks.json

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,17 @@
2929
// Associate with test task runner
3030
"tasks": [
3131
{
32-
"taskName": "Test",
33-
"suppressTaskName": true,
34-
"isTestCommand": true,
35-
"args": [
32+
"label": "Run Pester Test",
33+
"group": {
34+
"kind": "test",
35+
"isDefault": true
36+
},
37+
"type": "shell",
38+
"command":[
3639
"Write-Host 'Invoking Pester...'; $ProgressPreference = 'SilentlyContinue'; Invoke-Pester -Script Tests -PesterOption @{IncludeVSCodeMarker=$true};",
3740
"Invoke-Command { Write-Host 'Completed Test task in task runner.' }"
3841
],
3942
"problemMatcher": "$pester"
4043
}
4144
]
42-
}
45+
}

0 commit comments

Comments
 (0)