diff options
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/tasks.json | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json index cf269bbef..29d6b3592 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -5,7 +5,7 @@ "label": "build", "type": "shell", "command": "zig build", - "problemMatcher": [], + "group": { "kind": "build", "isDefault": true @@ -24,9 +24,10 @@ }, { "label": "test", - "type": "process", + "type": "shell", "command": "zig", "args": ["test", "${file}", "-femit-bin=zig-cache/bin/test"], + "group": { "kind": "test", "isDefault": true |