We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2dfec45 + 9d9f3db commit 82ebb10Copy full SHA for 82ebb10
1 file changed
src/vs/workbench/api/node/extHostTypes.ts
@@ -1042,7 +1042,7 @@ export class TaskGroup implements vscode.TaskGroup {
1042
1043
public static Rebuild: TaskGroup = new TaskGroup('rebuild', 'Rebuild');
1044
1045
- public static Test: TaskGroup = new TaskGroup('clean', 'Clean');
+ public static Test: TaskGroup = new TaskGroup('test', 'Test');
1046
1047
constructor(id: string, label: string) {
1048
if (typeof id !== 'string') {
@@ -1306,4 +1306,4 @@ export class ThemeColor {
1306
constructor(id: string) {
1307
this.id = id;
1308
}
1309
-}
+}
0 commit comments