mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-06 14:24:04 -05:00
Fixes #29920: Task shouldn't propose a problem matcher for test tasks.
This commit is contained in:
@@ -922,6 +922,9 @@ class TaskService extends EventEmitter implements ITaskService {
|
||||
if (!this.canCustomize()) {
|
||||
return false;
|
||||
}
|
||||
if (task.group !== void 0 && task.group !== TaskGroup.Build) {
|
||||
return false;
|
||||
}
|
||||
if (task.problemMatchers !== void 0 && task.problemMatchers.length > 0) {
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user