vscode.TaskGroup.Test should be Test, not Clean

This commit is contained in:
Joshua Granick
2017-07-06 11:42:05 -07:00
committed by GitHub
parent 1401c30567
commit 9d9f3db263

View File

@@ -1042,7 +1042,7 @@ export class TaskGroup implements vscode.TaskGroup {
public static Rebuild: TaskGroup = new TaskGroup('rebuild', 'Rebuild');
public static Test: TaskGroup = new TaskGroup('clean', 'Clean');
public static Test: TaskGroup = new TaskGroup('test', 'Test');
constructor(id: string, label: string) {
if (typeof id !== 'string') {
@@ -1306,4 +1306,4 @@ export class ThemeColor {
constructor(id: string) {
this.id = id;
}
}
}