Update tasks

This commit is contained in:
Aoran Zeng 2025-07-14 22:46:25 +08:00
parent f2a383412c
commit eb7753511e
No known key found for this signature in database
GPG Key ID: 8F8BA8488E10ED98

38
.vscode/tasks.json vendored
View File

@ -56,6 +56,44 @@
"isDefault": true
},
"detail": "使用 just test 测试"
},
{
"type": "shell",
"label": "测试 framework",
"command": "just",
"args": [
"test-fw"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "test",
"isDefault": false
},
"detail": "使用 just test-fw 测试 framework"
},
{
"type": "shell",
"label": "测试 xy.h",
"command": "just",
"args": [
"test-xy"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "test",
"isDefault": false
},
"detail": "使用 just test-xy 测试 xy.h"
}
],
"version": "2.0.0"