Skip to content

Commit ffbf999

Browse files
committed
Update .vscode/tasks.json with more granular test tasks
1 parent 304c1b1 commit ffbf999

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

.vscode/tasks.json

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"version": "0.1.0",
2+
"version": "2.0.0",
33

44
"windows": {
5-
"command": "${env.windir}\\sysnative\\windowspowershell\\v1.0\\PowerShell.exe",
5+
"command": "powershell.exe",
66
"args": [ "-NoProfile", "-ExecutionPolicy", "Bypass" ]
77
},
88
"linux": {
@@ -14,7 +14,6 @@
1414
"args": [ "-NoProfile" ]
1515
},
1616

17-
"isShellCommand": true,
1817
"showOutput": "always",
1918

2019
// Associate with test task runner
@@ -35,6 +34,18 @@
3534
"suppressTaskName": true,
3635
"isTestCommand": true,
3736
"args": [ "Invoke-Build Test" ]
37+
},
38+
{
39+
"taskName": "Test Language Service",
40+
"suppressTaskName": true,
41+
"isTestCommand": true,
42+
"args": [ "Invoke-Build TestServer" ]
43+
},
44+
{
45+
"taskName": "Test Host",
46+
"suppressTaskName": true,
47+
"isTestCommand": true,
48+
"args": [ "Invoke-Build TestHost" ]
3849
}
3950
]
4051
}

0 commit comments

Comments
 (0)